Skip to content

Commit

Permalink
fix: remove not needed A and AAAA records
Browse files Browse the repository at this point in the history
  • Loading branch information
burib authored Nov 29, 2024
1 parent 09bdb82 commit e363bd6
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,3 @@ resource "aws_route53_record" "wildcard_cert_validation" {
]
ttl = "60"
}

resource "aws_route53_record" "placeholder_a_record" {
zone_id = aws_route53_zone.this.zone_id
name = aws_route53_zone.this.name
type = "A"
ttl = 300
records = ["127.0.0.1"]
}

resource "aws_route53_record" "placeholder_aaaa_record" {
zone_id = aws_route53_zone.this.zone_id
name = aws_route53_zone.this.name
type = "AAAA"
ttl = 300
records = ["::1"]
}

0 comments on commit e363bd6

Please sign in to comment.