tripleo-heat-templates/examples/source_lib_result.yaml
Clint Byrum f9ef457987 Remove image parameter changing from merge
The merge tool originally was meant to merge somewhat different things,
and thus this was helpful in the early versions. However, at this point
we want parameters to be more stable and we don't generally merge things
that have their own image parameter.

Meanwhile this feature caused problems as we change resource names.

This is a backward incompatible change of default behavior, but the old
behavior can be had again by passing --change-image-params.

Change-Id: I78cf31f0443f3d9f274758f5471a5bca9155635d
2014-01-31 11:13:22 -08:00

25 lines
429 B
YAML

Description: examples/source.yaml
HeatTemplateFormatVersion: '2012-12-12'
Parameters:
Default: my_image
SourceImage: null
Type: String
Resources:
A:
Properties:
image:
Ref: SourceImage
Type: OS::Nova::Server
B:
Metadata:
my_meta:
Fn::Join:
- ''
- - one
- two
- three
Properties:
image:
Ref: BImage
Type: OS::Nova::Server