Define and bind a public virtual IP
[apex-tripleo-heat-templates.git] / examples / source.yaml
1 Parameters:
2   SourceImage:
3   Type: String
4   Default: my_image
5 Resources:
6   A:
7     Type: OS::Nova::Server
8     Properties:
9       image: {Ref: SourceImage}
10   B:
11     Type: FileInclude
12     Path: examples/lib.yaml
13     SubKey: Resources.GenericB
14     Parameters:
15       ImportantValue: {'Fn::Join': [ '', ['one', 'two', 'three']]}