From a973207ccf80fd638f2d211c2ef8b1431aa70249 Mon Sep 17 00:00:00 2001 From: Robert Collins Date: Fri, 13 Sep 2013 19:39:08 +1200 Subject: Make Heat service password configurable. So that it can be a snowflake! (unique). Change-Id: Ic823620ace7df5636cd9ff16dcd7476654692e6c --- overcloud-source.yaml | 7 ++++++- undercloud-vm.yaml | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/overcloud-source.yaml b/overcloud-source.yaml index ff209483..cf32fe5e 100644 --- a/overcloud-source.yaml +++ b/overcloud-source.yaml @@ -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___________ diff --git a/undercloud-vm.yaml b/undercloud-vm.yaml index 21fcdc5c..b9cf0ec8 100644 --- a/undercloud-vm.yaml +++ b/undercloud-vm.yaml @@ -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___________ -- cgit 1.2.3-korg