Make Heat service password configurable.
authorRobert Collins <rbtcollins@hp.com>
Fri, 13 Sep 2013 07:39:08 +0000 (19:39 +1200)
committerRobert Collins <rbtcollins@hp.com>
Sat, 14 Sep 2013 04:24:11 +0000 (16:24 +1200)
So that it can be a snowflake! (unique).

Change-Id: Ic823620ace7df5636cd9ff16dcd7476654692e6c

overcloud-source.yaml
undercloud-vm.yaml

index ff20948..cf32fe5 100644 (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___________
index 21fcdc5..b9cf0ec 100644 (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___________