Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 7, 2025
1 parent 475593b commit 86b6685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/zone_forward.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# if the zone grab fails here, it either doesn't exist or it is not associated with this VPC
# if zone_id passed, do not try to use the zone
data "aws_route53_zone" "zone" {
count = var.zone_id != null ? 1 : 0
count = var.zone_id == null ? 1 : 0
name = local.zone
private_zone = local.private_zone
}

0 comments on commit 86b6685

Please sign in to comment.