We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d627c0 commit 191c1f9Copy full SHA for 191c1f9
VERSION
@@ -1 +1 @@
1
-0.14.0
+0.14.1
modules/private-zone/outputs.tf
@@ -35,19 +35,12 @@ output "name_servers" {
35
36
output "vpc_associations" {
37
description = "A list of associated VPCs with a private Hosted Zone."
38
- value = concat(
39
- [{
40
- region = one(aws_route53_zone.private.vpc[*].vpc_region)
41
- vpc_id = one(aws_route53_zone.private.vpc[*].vpc_id)
42
- }],
43
- [
44
- for association in aws_route53_zone_association.secondary : {
45
- region = association.vpc_region
46
- vpc_id = association.vpc_id
47
- }
48
- ]
49
-
50
- )
+ value = [
+ for association in aws_route53_zone.private.vpc : {
+ region = association.vpc_region
+ vpc_id = association.vpc_id
+ }
+ ]
51
}
52
53
output "cross_account_vpc_association_authorizations" {
0 commit comments