Merge "Ensures mongodb configuration only happens if mongodb is needed"
[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   ControlPlaneSubnetCidr: # Override this via parameter_defaults
11     default: '24'
12     description: The subnet CIDR of the control plane network.
13     type: string
14
15 outputs:
16   ip_address:
17     description: pass thru network IP
18     value: {get_param: ControlPlaneIP}
19   ip_subnet:
20     description: IP/Subnet CIDR for the pass thru network IP
21     value:
22           list_join:
23             - ''
24             - - {get_param: ControlPlaneIP}
25               - '/'
26               - {get_param: ControlPlaneSubnetCidr}