aboutsummaryrefslogtreecommitdiffstats
path: root/examples/launchconfig1_hot.yaml
blob: 1354f46996382997af1298d9d70771f921a31483 (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
heat_template_version: 2013-05-23
parameters:
  A:
    type: string
    default: test1
  B:
    type: string
    default: test2
  resource1Image:
    type: string
    default: resource1
resources:
  notcomputeConfigBase:
    type: AWS::AutoScaling::LaunchConfiguration
    metadata:
      OpenStack::Role: notcomputeConfig
      a: {get_param: A}
      b: {get_param: B}
  resource1:
    type: OS::Nova::Server
    properties:
      flavor: test_flavor
      image: {get_param: resource1Image}
      key_name: test_key