Fix typos
[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   ExternalIpUri:
11     default: ''
12     type: string
13     description: IP address with brackets in case of IPv6
14   InternalApiIp:
15     default: ''
16     type: string
17   InternalApiIpUri:
18     default: ''
19     type: string
20     description: IP address with brackets in case of IPv6
21   StorageIp:
22     default: ''
23     type: string
24   StorageIpUri:
25     default: ''
26     type: string
27     description: IP address with brackets in case of IPv6
28   StorageMgmtIp:
29     default: ''
30     type: string
31   StorageMgmtIpUri:
32     default: ''
33     type: string
34     description: IP address with brackets in case of IPv6
35   TenantIp:
36     default: ''
37     type: string
38   TenantIpUri:
39     default: ''
40     type: string
41     description: IP address with brackets in case of IPv6
42   ManagementIp:
43     default: ''
44     type: string
45   ManagementIpUri:
46     default: ''
47     type: string
48     description: IP address with brackets in case of IPv6
49
50 outputs:
51   net_ip_map:
52     description: >
53       A Hash containing a mapping of network names to assigned IPs
54       for a specific machine.
55     value:
56       ctlplane: {get_param: ControlPlaneIp}
57       external: {get_param: ExternalIp}
58       internal_api: {get_param: InternalApiIp}
59       storage: {get_param: StorageIp}
60       storage_mgmt: {get_param: StorageMgmtIp}
61       tenant: {get_param: TenantIp}
62       management: {get_param: ManagementIp}
63   net_ip_uri_map:
64     description: >
65       A Hash containing a mapping of netowrk names to assigned IPs for a
66       specific machine with brackets around IPv6 addresses for use in URLs.
67     value:
68       ctlplane: {get_param: ControlPlaneIp}
69       external: {get_param: ExternalIpUri}
70       internal_api: {get_param: InternalApiIpUri}
71       storage: {get_param: StorageIpUri}
72       storage_mgmt: {get_param: StorageMgmtIpUri}
73       tenant: {get_param: TenantIpUri}
74       management: {get_param: ManagementIpUri}