aboutsummaryrefslogtreecommitdiffstats
path: root/base.yaml
blob: 6db5d3ed588f8800b13adbfaf8c2f704b9a161ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
HeatTemplateFormatVersion: '2012-12-12'
Description: 'HEAT Template - Tie OpenStack components together'
Parameters:
  TemplateRoot:
    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:
      Fn::Join:
        - {Ref: TemplateRoot}
        - mysql.yaml
    Parameters:
      InstanceType: m1.small
      KeyName: default
      MySQLImage: image-mysql
  Keystone:
    Type: AWS::CloudFormation::Stack
    TemplateURL:
      Fn::Join:
        - {Ref: TemplateRoot}
        - keystone.yaml
    Parameters:
      KeyName: default
      KeystoneDSN:
        Fn::Join:
          - 'mysql://keystone:'
          - {Fn::GetAtt: [ MySQL , KeystonePassword ]}
          - '@'
          - {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'