Merge "Added libvirt_vif_driver, ovs_bridge and security_group_api parameters"
[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   FixedIPs:
23     description: # Here for compatibility with vip.yaml
24     default: []
25     type: json
26   ControlPlaneSubnetCidr: # Override this via parameter_defaults
27     default: '24'
28     description: The subnet CIDR of the control plane network.
29     type: string
30
31 outputs:
32   ip_address:
33     description: pass thru network IP
34     value: {get_param: ControlPlaneIP}
35   ip_subnet:
36     description: IP/Subnet CIDR for the pass thru network IP
37     value:
38           list_join:
39             - ''
40             - - {get_param: ControlPlaneIP}
41               - '/'
42               - {get_param: ControlPlaneSubnetCidr}