7b5cdf11c7a445b68c11ba7c791ed48ce460d166
[apex-tripleo-heat-templates.git] / deployed-server / ctlplane-port.yaml
1 heat_template_version: ocata
2
3 parameters:
4   network:
5     type: string
6     default: ctlplane
7   name:
8     type: string
9   replacement_policy:
10     type: string
11     default: AUTO
12
13 resources:
14
15   ControlPlanePort:
16     type: OS::Neutron::Port
17     properties:
18       network: ctlplane
19       name:
20         list_join:
21           - '-'
22           - - {get_param: name}
23             - port
24       replacement_policy: AUTO
25
26 outputs:
27   fixed_ips:
28     value: {get_attr: [ControlPlanePort, fixed_ips]}