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 86b6685 commit 7ab2cf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/entry_heritage.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
resource "aws_route53_record" "entry_heritage" {
count = var.enable_heritage ? 1 : 0
zone_id = var.zone_id != null ? data.aws_route53_zone.zone[0].zone_id : var.zone_id
zone_id = var.zone_id == null ? data.aws_route53_zone.zone[0].zone_id : var.zone_id
name = format("%v%v", local.default_heritage_prefix, var.name)

type = "TXT"
Expand Down

0 comments on commit 7ab2cf4

Please sign in to comment.