0dbf2810a0
merge.py is undocumented and untested, which is undesirable, as it does not seem to be going away any time soon. Change-Id: I7e4870e58a32c567e5947b9a48893b8210ad4d65
25 lines
419 B
YAML
25 lines
419 B
YAML
Description: examples/source.yaml
|
|
HeatTemplateFormatVersion: '2012-12-12'
|
|
Parameters:
|
|
AImage: null
|
|
Default: my_image
|
|
Type: String
|
|
Resources:
|
|
A:
|
|
Properties:
|
|
image:
|
|
Ref: AImage
|
|
Type: OS::Nova::Server
|
|
B:
|
|
Metadata:
|
|
my_meta:
|
|
Fn::Join:
|
|
- ''
|
|
- - one
|
|
- two
|
|
- three
|
|
Properties:
|
|
image:
|
|
Ref: BImage
|
|
Type: OS::Nova::Server
|