Skip to content

Commit e363bd6

Browse files
authored
fix: remove not needed A and AAAA records
1 parent 09bdb82 commit e363bd6

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

main.tf

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,3 @@ resource "aws_route53_record" "wildcard_cert_validation" {
2828
]
2929
ttl = "60"
3030
}
31-
32-
resource "aws_route53_record" "placeholder_a_record" {
33-
zone_id = aws_route53_zone.this.zone_id
34-
name = aws_route53_zone.this.name
35-
type = "A"
36-
ttl = 300
37-
records = ["127.0.0.1"]
38-
}
39-
40-
resource "aws_route53_record" "placeholder_aaaa_record" {
41-
zone_id = aws_route53_zone.this.zone_id
42-
name = aws_route53_zone.this.name
43-
type = "AAAA"
44-
ttl = 300
45-
records = ["::1"]
46-
}

0 commit comments

Comments
 (0)