Skip to content

Commit

Permalink
Fix alias record bug
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed Jun 21, 2024
1 parent 9f42234 commit eea622a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.3
0.15.4
2 changes: 1 addition & 1 deletion modules/record-set/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "aws_route53_record" "this" {
zone_id = var.zone
name = var.name
type = var.type
ttl = var.ttl
ttl = each.value.alias != null ? null : var.ttl
allow_overwrite = var.overwrite

set_identifier = (var.routing_policy == "SIMPLE"
Expand Down

0 comments on commit eea622a

Please sign in to comment.