Skip to content

Commit

Permalink
Create r53_0.10-beta-security-gov-uk.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
OllieJC authored Jan 23, 2024
1 parent 0c851f5 commit b3ebc35
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions dns/r53_0.10-beta-security-gov-uk.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
resource "aws_route53_record" "beta-delegated-zone" {
zone_id = aws_route53_zone.sec-gov-uk.zone_id
allow_overwrite = true
name = "beta"
ttl = local.standard_ttl
type = "NS"

records = [
"ns-573.awsdns-07.net",
"ns-1179.awsdns-19.org",
"ns-1704.awsdns-21.co.uk",
"ns-507.awsdns-63.com"
]
}


resource "aws_route53_record" "beta-ds" {
zone_id = aws_route53_zone.sec-gov-uk.zone_id
allow_overwrite = true
name = "beta"
ttl = local.standard_ttl
type = "DS"

records = [
"17897 13 2 A44EE95238988F711063B4705BEFD8846E5E2411C52BDC8D02035E21964B152B"
]
}

0 comments on commit b3ebc35

Please sign in to comment.