Align template defaults with the client
[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
23 outputs:
24   net_ip_map:
25     description: >
26       A Hash containing a mapping of network names to assigned IPs
27       for a specific machine.
28     value:
29       ctlplane: {get_param: ControlPlaneIp}
30       external: {get_param: ExternalIp}
31       internal_api: {get_param: InternalApiIp}
32       storage: {get_param: StorageIp}
33       storage_mgmt: {get_param: StorageMgmtIp}
34       tenant: {get_param: TenantIp}