diff --git a/VERSION b/VERSION index a803cc2..930e300 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.14.0 +0.14.1 diff --git a/modules/private-zone/outputs.tf b/modules/private-zone/outputs.tf index b98daaa..bf9ac3f 100644 --- a/modules/private-zone/outputs.tf +++ b/modules/private-zone/outputs.tf @@ -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" {