e8dd59a3486ae653c4088fb9ad8efd8532d84abc
[apex-tripleo-heat-templates.git] / examples / source_hot.yaml
1 heat_template_version: 2013-05-23
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: {list_join: [ '', ['one', 'two', 'three']]}