Merge "Minor fixes to TLS related resources"
[apex-tripleo-heat-templates.git] / network / ports / net_ip_list_map.yaml
1 heat_template_version: 2015-04-30
2
3 parameters:
4   ControlPlaneIpList:
5     default: []
6     type: comma_delimited_list
7   ExternalIpList:
8     default: []
9     type: comma_delimited_list
10   InternalApiIpList:
11     default: []
12     type: comma_delimited_list
13   StorageIpList:
14     default: []
15     type: comma_delimited_list
16   StorageMgmtIpList:
17     default: []
18     type: comma_delimited_list
19   TenantIpList:
20     default: []
21     type: comma_delimited_list
22
23 outputs:
24   net_ip_map:
25     description: >
26       A Hash containing a mapping of network names to assigned lists
27       of IP addresses.
28     value:
29       ctlplane: {get_param: ControlPlaneIpList}
30       external: {get_param: ExternalIpList}
31       internal_api: {get_param: InternalApiIpList}
32       storage: {get_param: StorageIpList}
33       storage_mgmt: {get_param: StorageMgmtIpList}
34       tenant: {get_param: TenantIpList}