Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 24, 2023
1 parent b3f4d53 commit 133cabb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions host/entry.tf
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
resource "aws_route53_record" "entry_ipv4" {
count = length(local.ipv4_hosts) > 0 ? 1 : 0
zone_id = data.aws_route53_zone.zone.zone_id
name = var.name
type = "A"
Expand All @@ -7,6 +8,7 @@ resource "aws_route53_record" "entry_ipv4" {
}

resource "aws_route53_record" "entry_ipv6" {
count = length(local.ipv6_hosts) > 0 ? 1 : 0
zone_id = data.aws_route53_zone.zone.zone_id
name = var.name
type = "AAAA"
Expand Down

0 comments on commit 133cabb

Please sign in to comment.