aboutsummaryrefslogtreecommitdiffstats
path: root/examples/source_lib_result.yaml
blob: 5844c81308fd72291ff46745dac9188f5877d3b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Description: examples/source.yaml
HeatTemplateFormatVersion: '2012-12-12'
Parameters:
  SourceImage:
    Default: my_image
    Type: String
Resources:
  A:
    Properties:
      image:
        Ref: SourceImage
    Type: OS::Nova::Server
  B:
    Metadata:
      my_meta:
        Fn::Join:
        - ''
        - - one
          - two
          - three
    Properties:
      image:
        Ref: BImage
    Type: OS::Nova::Server