Convert Fn::Select to extended get_attr
[apex-tripleo-heat-templates.git] / examples / launchconfig_result_hot.yaml
1 description: examples/launchconfig1_hot.yaml,examples/launchconfig2_hot.yaml
2 heat_template_version: '2014-10-16'
3 parameters:
4   A:
5     default: test1
6     type: string
7   B:
8     default: test2
9     type: string
10   C:
11     default: test3
12     type: string
13   resource1Image:
14     default: resource1
15     type: string
16   resource2Image:
17     default: resource2
18     type: string
19 resources:
20   notcomputeConfig:
21     metadata:
22       OpenStack::Role: notcomputeConfig
23       a:
24         get_param: A
25       b:
26         get_param: B
27       c:
28         get_param: C
29     type: AWS::AutoScaling::LaunchConfiguration
30   resource1:
31     properties:
32       flavor: test_flavor
33       image:
34         get_param: resource1Image
35       key_name: test_key
36     type: OS::Nova::Server
37   resource2:
38     properties:
39       flavor: test_flavor
40       image:
41         get_param: resource2Image
42       key_name: test_key
43     type: OS::Nova::Server