Change | to > in templates.
[apex-tripleo-heat-templates.git] / examples / source_hot.yaml
1 heat_template_version: 2014-10-16
2 parameters:
3   SourceImage:
4     type: string
5     default: my_image
6 resources:
7   A:
8     type: OS::Nova::Server
9     properties:
10       image: {get_param: SourceImage}
11   B:
12     type: FileInclude
13     Path: examples/lib_hot.yaml
14     SubKey: resources.GenericB
15     parameters:
16       ImportantValue: {"Fn::Join": [ '', ['one', 'two', 'three']]}