Make Heat service password configurable.

So that it can be a snowflake! (unique).

Change-Id: Ic823620ace7df5636cd9ff16dcd7476654692e6c
This commit is contained in:
Robert Collins 2013-09-13 19:39:08 +12:00
parent 5b7bf0a0e6
commit a973207ccf
2 changed files with 12 additions and 2 deletions

View File

@ -22,6 +22,10 @@ Parameters:
Default: unset
Description: The password for the glance service account, used by the glance services.
Type: String
HeatPassword:
Default: unset
Description: The password for the Heat service account, used by the Heat services.
Type: String
KeyName:
Default: default
Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
@ -153,7 +157,8 @@ Resources:
stack_name:
Ref: AWS::StackName
heat:
admin_password: unset
admin_password:
Ref: HeatPassword
admin_tenant_name: service
admin_user: heat
auth_encryption_key: unset___________

View File

@ -21,6 +21,10 @@ Parameters:
Default: default
Description: Name of an existing EC2 KeyPair to enable SSH access to the instances
Type: String
HeatPassword:
Default: unset
Description: The password for the Heat service account, used by the Heat services.
Type: String
Image:
Default: undercloud
Type: String
@ -78,7 +82,8 @@ Resources:
service-password:
Ref: GlancePassword
heat:
admin_password: unset
admin_password:
Ref: HeatPassword
admin_tenant_name: service
admin_user: heat
auth_encryption_key: unset___________