Use parameter_defaults in env files
[apex-tripleo-heat-templates.git] / examples / source.yaml
1 HeatTemplateFormatVersion: '2012-12-12'
2 Parameters:
3   SourceImage:
4     Type: String
5     Default: my_image
6 Resources:
7   A:
8     Type: OS::Nova::Server
9     Properties:
10       image: {Ref: SourceImage}
11   B:
12     Type: FileInclude
13     Path: examples/lib.yaml
14     SubKey: Resources.GenericB
15     Parameters:
16       ImportantValue: {'Fn::Join': [ '', ['one', 'two', 'three']]}