diff options
author | Clint Byrum <clint@fewbar.com> | 2013-05-08 16:13:07 -0700 |
---|---|---|
committer | Clint Byrum <clint@fewbar.com> | 2013-05-08 16:13:07 -0700 |
commit | 2af825cf338595c4538543c572fbc2664c668a91 (patch) | |
tree | 7a565f8e93480946c6d474e1765784c70864754b /mysql.yaml | |
parent | b4f7eae590bfea841db3099c4dba1160fb2f6d27 (diff) |
Add glance to mysql and base.
Diffstat (limited to 'mysql.yaml')
-rw-r--r-- | mysql.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -17,6 +17,10 @@ Parameters: Description: Heat database username. Type: String Default: heat + GlanceUser: + Description: Glance database username. + Type: String + Default: heat MySQLImage: Type: String BootstrapHost: @@ -65,6 +69,9 @@ Resources: - database: heat username: {Ref: HeatUser} userhandle: {Ref: HeatPasswordHandle} + - database: glance + username: {Ref: GlanceUser} + userhandle: {Ref: GlancePasswordHandle} mysql-migration: users: root: @@ -91,6 +98,14 @@ Resources: {Ref: MySQLImage} InstanceType: {Ref: InstanceType} KeyName: {Ref: KeyName} + GlancePasswordHandle: + Type: AWS::CloudFormation::WaitConditionHandle + GlancePassword: + DependsOn: MySQL + Type: AWS::CloudFormation::WaitCondition + Properties: + Handle: {Ref: GlancePasswordHandle} + Timeout: 90 HeatPasswordHandle: Type: AWS::CloudFormation::WaitConditionHandle HeatPassword: @@ -116,3 +131,6 @@ Outputs: HeatPassword: Fn::GetAtt: [ HeatPassword, Data ] HeatUser: {Ref: HeatUser} + GlancePassword: + Fn::GetAtt: [ GlancePassword, Data ] + GlanceUser: {Ref: GlanceUser} |