aboutsummaryrefslogtreecommitdiffstats
path: root/examples/launchconfig1_hot.yaml
blob: 4c86e76dc31fd468f14fe83303852310da9fff9b (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: 2014-10-16
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