You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
948 B
40 lines
948 B
heat_template_version: wallaby |
|
|
|
description: > |
|
Deployed VIP port on the Control Plane network. |
|
|
|
parameters: |
|
name: # Here for compatibility |
|
default: '' |
|
type: string |
|
dns_name: # Here for compatibility |
|
default: '' |
|
type: string |
|
network: # Here for compatibility |
|
default: '' |
|
type: string |
|
fixed_ips: # Here for compatibility |
|
default: '' |
|
type: comma_delimited_list |
|
replacement_policy: # Here for compatibility |
|
default: '' |
|
type: string |
|
tags: # Here for compatibility |
|
default: [] |
|
type: comma_delimited_list |
|
|
|
ControlPlaneVipData: |
|
description: > |
|
Control Plane Virtual IP data |
|
default: {} |
|
type: json |
|
|
|
outputs: |
|
name: |
|
value: {get_param: [ControlPlaneVipData, name]} |
|
fixed_ips: |
|
value: {get_param: [ControlPlaneVipData, fixed_ips]} |
|
network: |
|
value: {get_param: [ControlPlaneVipData, network]} |
|
subnets: |
|
value: {get_param: [ControlPlaneVipData, subnets]}
|
|
|