blob: 15314886ecd6e9dc70059c2a093c05140fa34a02 (
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: {"Fn::Join": [ '', ['one', 'two', 'three']]}
|