description: examples/source_hot.yaml
heat_template_version: '2014-10-16'
parameters:
  SourceImage:
    default: my_image
    type: string
resources:
  A:
    properties:
      image:
        get_param: SourceImage
    type: OS::Nova::Server
  B:
    metadata:
      my_meta:
        list_join:
        - ''
        - - one
          - two
          - three
    properties:
      image:
        get_param: BImage
    type: OS::Nova::Server