Merge "Upgrades: quiet yum update"
[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   ManagementIpList:
23     default: []
24     type: comma_delimited_list
25
26 outputs:
27   net_ip_map:
28     description: >
29       A Hash containing a mapping of network names to assigned lists
30       of IP addresses.
31     value:
32       ctlplane: {get_param: ControlPlaneIpList}
33       external: {get_param: ExternalIpList}
34       internal_api: {get_param: InternalApiIpList}
35       storage: {get_param: StorageIpList}
36       storage_mgmt: {get_param: StorageMgmtIpList}
37       tenant: {get_param: TenantIpList}
38       management: {get_param: ManagementIpList}