Skip to content

Commit

Permalink
feat: create placeholder A records
Browse files Browse the repository at this point in the history
  • Loading branch information
burib authored Nov 29, 2024
1 parent e8b5b07 commit d958340
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,19 @@ 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 = "A"
ttl = 300
records = ["::1"]
}

0 comments on commit d958340

Please sign in to comment.