aboutsummaryrefslogtreecommitdiffstats
path: root/base.yaml
diff options
context:
space:
mode:
authorClint Byrum <clint@fewbar.com>2013-04-18 11:19:43 -0700
committerClint Byrum <clint@fewbar.com>2013-04-18 11:19:43 -0700
commit9954c0f5b2fda18757c2bcb5240c4b19da7dc69e (patch)
tree5cc71da6f1ddb119bde61361e539e97698c6017d /base.yaml
parent67533a2d9dc87454ca2cbfe4778aa280e1a6392e (diff)
Add Heat and RabbitMQ to base stack.
Diffstat (limited to 'base.yaml')
-rw-r--r--base.yaml25
1 files changed, 25 insertions, 0 deletions
diff --git a/base.yaml b/base.yaml
index adff04ed..6db5d3ed 100644
--- a/base.yaml
+++ b/base.yaml
@@ -5,6 +5,16 @@ Parameters:
Description: URL Base where all of our templates are available
Type: String
Resources:
+ RabbitMQ:
+ Type: AWS::CloudFormation::Stack
+ TemplateURL:
+ Fn::Join:
+ - {Ref: TemplateRoot}
+ - rabbitmq.yaml
+ Parameters:
+ InstanceType: m1.small
+ KeyName: default
+ RabbitMQImage: image-rabbitmq
MySQL:
Type: AWS::CloudFormation::Stack
TemplateURL:
@@ -30,3 +40,18 @@ Resources:
- '@'
- {Fn::GetAtt: [ MySQL , MySQLHost ]}
- '/keystone'
+ Heat:
+ Type: AWS::CloudFormation::Stack
+ TemplateURL:
+ Fn::Join:
+ - {Ref: TemplateRoot}
+ - heat.yaml
+ Parameters:
+ KeyName: default
+ HeatDSN:
+ Fn::Join:
+ - 'mysql://heat:'
+ - {Fn::GetAtt: [ MySQL, HeatPassword ] }
+ - '@'
+ - {Fn::GetAtt: [ MySQL, MySQLHost ]}
+ - '/heat'