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