blob: e8dd59a3486ae653c4088fb9ad8efd8532d84abc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
heat_template_version: 2013-05-23
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']]}
|