Skip to content

Commit

Permalink
feat: add NS delegation for valentine (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxneuvians authored Feb 3, 2025
1 parent 0e43789 commit bdc99df
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions terraform/cds-snc.ca.tf
Original file line number Diff line number Diff line change
Expand Up @@ -388,4 +388,18 @@ resource "aws_route53_record" "_github-challenge-cds-snc-org" {
"05a2344682"
]
ttl = "1800"
}

# Valentine
resource "aws_route53_record" "valentine-cds-snc-NS" {
zone_id = aws_route53_zone.cds-snc-ca-public.zone_id
name = "valentine.cds-snc.ca"
type = "NS"
records = [
"ns-1727.awsdns-23.co.uk.",
"ns-314.awsdns-39.com.",
"ns-926.awsdns-51.net.",
"ns-1042.awsdns-02.org."
]
ttl = "1800"
}

0 comments on commit bdc99df

Please sign in to comment.