diff options
Diffstat (limited to 'examples/source_hot.yaml')
-rw-r--r-- | examples/source_hot.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/source_hot.yaml b/examples/source_hot.yaml new file mode 100644 index 00000000..e8dd59a3 --- /dev/null +++ b/examples/source_hot.yaml @@ -0,0 +1,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']]} |