blob: edc4060f43c3d8681ee527ef2531fed75bd288b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
heat_template_version: 2015-04-30
parameters:
ExternalIp:
default: ''
type: string
InternalApiIp:
default: ''
type: string
StorageIp:
default: ''
type: string
StorageMgmtIp:
default: ''
type: string
TenantIp:
default: ''
type: string
outputs:
net_ip_map:
description: >
A Hash containing a mapping of network names to assigned IPs
for a specific machine.
value:
external: {get_param: ExternalIp}
internal_api: {get_param: InternalApiIp}
storage: {get_param: StorageIp}
storage_mgmt: {get_param: StorageMgmtIp}
tenant: {get_param: TenantIp}
|