blob: 7b47f2b54a3adffb0db154246e8421620a99eadf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
heat_template_version: 2014-10-16
parameters:
SourceImage:
type: string
default: my_image
resources:
A:
type: OS::Nova::Server
properties:
image: {get_param: SourceImage}
B:
type: FileInclude
Path: examples/lib_hot.yaml
SubKey: resources.GenericB
parameters:
ImportantValue: {list_join: [ '', ['one', 'two', 'three']]}
|