-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TF] Create Designate RecordSet for VIP LB
Related: PRODX-44783 Change-Id: I6009ff00a9b7e29d3ef290968b401752f2e08ad5
- Loading branch information
1 parent
a851b4c
commit 2550787
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,6 +126,20 @@ resources: | |
} | ||
] | ||
|
||
designate_app_zone_name: | ||
type: OS::Heat::Value | ||
properties: | ||
value: | ||
list_join: [ '', [ { get_param: app_dns_zone_name }, '.' ] ] | ||
type: string | ||
|
||
designate_app_zone: | ||
type: OS::Designate::Zone | ||
properties: | ||
name: { get_attr: [ designate_app_zone_name, value ] } | ||
description: String | ||
email: [email protected] | ||
|
||
outputs: | ||
database_network_id: | ||
description: The uuid of database network | ||
|
@@ -145,3 +159,6 @@ outputs: | |
app_dns_zone_id: | ||
description: The uuid of refapp APP DNS zone | ||
value: { get_resource: app_vdns } | ||
designate_app_dns_zone_id: | ||
description: The uuid of refapp APP DNS zone | ||
value: { get_resource: designate_app_zone } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters