Skip to content

Commit

Permalink
fix entry.tf zone_id
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 10, 2025
1 parent 7ab2cf4 commit ea007d2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@

* 1.2.0 -- 2025-03-07
- create heritage submodule

* 1.2.1 -- 2025-03-10
- fix entry.tf zone_id
2 changes: 1 addition & 1 deletion common/entry.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "aws_route53_record" "entry" {
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 = var.name
type = local.rr_type
ttl = var.ttl
Expand Down
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.2.0"
_module_version = "1.2.1"
}

0 comments on commit ea007d2

Please sign in to comment.