Merge "Remove unused EnablePacemaker param from templates"
[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   PortName:
11     description: Name of the port
12     default: ''
13     type: string
14   ControlPlaneSubnetCidr: # Override this via parameter_defaults
15     default: '24'
16     description: The subnet CIDR of the control plane network.
17     type: string
18
19 outputs:
20   ip_address:
21     description: pass thru network IP
22     value: {get_param: ControlPlaneIP}
23   ip_subnet:
24     description: IP/Subnet CIDR for the pass thru network IP
25     value:
26           list_join:
27             - ''
28             - - {get_param: ControlPlaneIP}
29               - '/'
30               - {get_param: ControlPlaneSubnetCidr}