8a99e7d461
To support underclouds and seeds running older than the very latest heat. 2013-05-23 lacks function list_join, so this change reverts to using the equivalent function Fn::Join. Change-Id: I039f57ab39c1fcfc319a7a34265ba4fabf4ccd08 Closes-Bug: #1354305
17 lines
370 B
YAML
17 lines
370 B
YAML
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']]}
|