Merge "Configures haproxy as a Pacemaker resource"
[apex-tripleo-heat-templates.git] / examples / launchconfig_result.yaml
1 Description: examples/launchconfig1.yaml,examples/launchconfig2.yaml
2 HeatTemplateFormatVersion: '2012-12-12'
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         Ref: A
25       b:
26         Ref: B
27       c:
28         Ref: C
29     Type: AWS::AutoScaling::LaunchConfiguration
30   resource1:
31     Properties:
32       flavor: test_flavor
33       image:
34         Ref: resource1Image
35       key_name: test_key
36     Type: OS::Nova::Server
37   resource2:
38     Properties:
39       flavor: test_flavor
40       image:
41         Ref: resource2Image
42       key_name: test_key
43     Type: OS::Nova::Server