78 lines
1.9 KiB
YAML
Raw Normal View History

heat_template_version: 2013-05-23
description: 'Tie OpenStack components together'
parameters:
KeystoneAdminToken:
description: Admin Token needed for keystone
type: string
hidden: true
TemplateRoot:
description: URL Base where all of our templates are available
type: string
resources:
2013-04-18 11:19:43 -07:00
RabbitMQ:
type: AWS::CloudFormation::Stack
2013-04-18 11:19:43 -07:00
TemplateURL:
Fn::Join:
- {get_param: TemplateRoot}
2013-04-18 11:19:43 -07:00
- rabbitmq.yaml
parameters:
2013-04-18 11:19:43 -07:00
InstanceType: m1.small
KeyName: default
RabbitMQImage: image-rabbitmq
2013-02-28 08:33:23 -08:00
MySQL:
type: AWS::CloudFormation::Stack
2013-02-28 08:33:23 -08:00
TemplateURL:
Fn::Join:
- {get_param: TemplateRoot}
2013-02-28 08:33:23 -08:00
- mysql.yaml
parameters:
2013-02-28 08:33:23 -08:00
InstanceType: m1.small
KeyName: default
MySQLImage: image-mysql
Keystone:
type: AWS::CloudFormation::Stack
2013-02-28 08:33:23 -08:00
TemplateURL:
Fn::Join:
- {get_param: TemplateRoot}
2013-02-28 08:33:23 -08:00
- keystone.yaml
parameters:
AdminToken: {get_param: KeystoneAdminToken}
2013-02-28 08:33:23 -08:00
KeyName: default
KeystoneDSN:
Fn::Join:
2013-02-28 08:33:23 -08:00
- 'mysql://keystone:'
- {get_attr: [ MySQL , KeystonePassword ]}
2013-02-28 08:33:23 -08:00
- '@'
- {get_attr: [ MySQL , MySQLHost ]}
2013-02-28 08:33:23 -08:00
- '/keystone'
2013-05-08 16:13:07 -07:00
Glance:
type: AWS::CloudFormation::Stack
2013-05-08 16:13:07 -07:00
TemplateURL:
Fn::Join:
- {get_param: TemplateRoot}
2013-05-08 16:13:07 -07:00
- glance.yaml
parameters:
2013-05-08 16:13:07 -07:00
KeyName: default
HeatDSN:
Fn::Join:
2013-05-08 16:13:07 -07:00
- 'mysql://glance:'
- {get_attr: [ MySQL, GlancePassword ] }
2013-05-08 16:13:07 -07:00
- '@'
- {get_attr: [ MySQL, MySQLHost ]}
2013-05-08 16:13:07 -07:00
- '/glance'
2013-04-18 11:19:43 -07:00
Heat:
type: AWS::CloudFormation::Stack
2013-04-18 11:19:43 -07:00
TemplateURL:
Fn::Join:
- {get_param: TemplateRoot}
2013-04-18 11:19:43 -07:00
- heat.yaml
parameters:
2013-04-18 11:19:43 -07:00
KeyName: default
HeatDSN:
Fn::Join:
2013-04-18 11:19:43 -07:00
- 'mysql://heat:'
- {get_attr: [ MySQL, HeatPassword ] }
2013-04-18 11:19:43 -07:00
- '@'
- {get_attr: [ MySQL, MySQLHost ]}
2013-04-18 11:19:43 -07:00
- '/heat'