Skip to content

Commit

Permalink
fix: fix ipv6 record type
Browse files Browse the repository at this point in the history
  • Loading branch information
burib authored Nov 29, 2024
1 parent 431f5bf commit 5f67e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource "aws_route53_record" "placeholder_a_record" {
resource "aws_route53_record" "placeholder_aaaa_record" {
zone_id = aws_route53_zone.this.zone_id
name = aws_route53_zone.this.name
type = "A"
type = "AAAA"
ttl = 300
records = ["::1"]
}

0 comments on commit 5f67e50

Please sign in to comment.