Merge "Remove DefaultSignalTransport from top-level template"
[apex-tripleo-heat-templates.git] / network / ports / noop.yaml
1 heat_template_version: 2015-04-30
2
3 description: >
4   Returns the control plane port (provisioning network) as the ip_address.
5
6 parameters:
7   ControlPlaneIP:
8     description: IP address on the control plane
9     type: string
10   ControlPlaneNetwork:
11     description: Name of the control plane network
12     default: ctlplane
13     type: string
14   PortName:
15     description: Name of the port
16     default: ''
17     type: string
18   NetworkName:
19     description: # Here for compatability with vip.yaml
20     default: ''
21     type: string
22   ControlPlaneSubnetCidr: # Override this via parameter_defaults
23     default: '24'
24     description: The subnet CIDR of the control plane network.
25     type: string
26
27 outputs:
28   ip_address:
29     description: pass thru network IP
30     value: {get_param: ControlPlaneIP}
31   ip_subnet:
32     description: IP/Subnet CIDR for the pass thru network IP
33     value:
34           list_join:
35             - ''
36             - - {get_param: ControlPlaneIP}
37               - '/'
38               - {get_param: ControlPlaneSubnetCidr}