Select per-network hostnames for service_node_names
[apex-tripleo-heat-templates.git] / deployed-server / deployed-server-config.yaml
1 heat_template_version: 2014-10-16
2 parameters:
3   user_data_format:
4     type: string
5     default: SOFTWARE_CONFIG
6
7 resources:
8   # We just need something which returns a unique ID, but we can't
9   # use RandomString because RefId returns the value, not the physical
10   # resource ID, SoftwareConfig should work as it returns a UUID
11   deployed-server-config:
12     type: OS::Heat::SoftwareConfig
13
14 outputs:
15   # FIXME(shardy) this is needed because TemplateResource returns an
16   # ARN not a UUID, which overflows the Deployment server_id column..
17   user_data_format:
18     value: SOFTWARE_CONFIG
19   OS::stack_id:
20     value: {get_resource: deployed-server-config}
21
22