Merge "Enable TLS in loadbalancer if cert path is detected"
[apex-tripleo-heat-templates.git] / network / ports / net_ip_map.yaml
1 heat_template_version: 2015-04-30
2
3 parameters:
4   ControlPlaneIp:
5     default: ''
6     type: string
7   ExternalIp:
8     default: ''
9     type: string
10   InternalApiIp:
11     default: ''
12     type: string
13   StorageIp:
14     default: ''
15     type: string
16   StorageMgmtIp:
17     default: ''
18     type: string
19   TenantIp:
20     default: ''
21     type: string
22   ManagementIp:
23     default: ''
24     type: string
25
26 outputs:
27   net_ip_map:
28     description: >
29       A Hash containing a mapping of network names to assigned IPs
30       for a specific machine.
31     value:
32       ctlplane: {get_param: ControlPlaneIp}
33       external: {get_param: ExternalIp}
34       internal_api: {get_param: InternalApiIp}
35       storage: {get_param: StorageIp}
36       storage_mgmt: {get_param: StorageMgmtIp}
37       tenant: {get_param: TenantIp}
38       management: {get_param: ManagementIp}