blob: 1586a4d0c1c8a1b57322c29f699f972f58c290fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
heat_template_version: 2014-10-16
parameters:
C:
type: string
default: test3
resource2Image:
type: string
default: resource2
resources:
notcomputeConfigMixin:
type: AWS::AutoScaling::LaunchConfiguration
metadata:
OpenStack::Role: notcomputeConfig
c: {get_param: C}
resource2:
type: OS::Nova::Server
properties:
flavor: test_flavor
image: {get_param: resource2Image}
key_name: test_key
|