Skip to content

Commit

Permalink
Fix output buf of private-zone
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed Nov 16, 2023
1 parent 4d627c0 commit 191c1f9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0
0.14.1
19 changes: 6 additions & 13 deletions modules/private-zone/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,12 @@ output "name_servers" {

output "vpc_associations" {
description = "A list of associated VPCs with a private Hosted Zone."
value = concat(
[{
region = one(aws_route53_zone.private.vpc[*].vpc_region)
vpc_id = one(aws_route53_zone.private.vpc[*].vpc_id)
}],
[
for association in aws_route53_zone_association.secondary : {
region = association.vpc_region
vpc_id = association.vpc_id
}
]

)
value = [
for association in aws_route53_zone.private.vpc : {
region = association.vpc_region
vpc_id = association.vpc_id
}
]
}

output "cross_account_vpc_association_authorizations" {
Expand Down

0 comments on commit 191c1f9

Please sign in to comment.