Skip to content

Commit

Permalink
feat: superset subdomain delegation (#440)
Browse files Browse the repository at this point in the history
Add NS records for the `superset.alpha.canada.ca` hosted zone.
This will be used by the production instance of Superset.
  • Loading branch information
patheard authored Dec 9, 2024
1 parent 0ddf7f4 commit 298e099
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions terraform/superset.alpha.canada.ca.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resource "aws_route53_record" "superset-alpha-canada-ca-NS" {
zone_id = aws_route53_zone.alpha-canada-ca-public.zone_id
name = "superset.alpha.canada.ca"
type = "NS"
records = [
"ns-521.awsdns-01.net",
"ns-1259.awsdns-29.org",
"ns-1939.awsdns-50.co.uk",
"ns-204.awsdns-25.com"
]
ttl = "300"
}

0 comments on commit 298e099

Please sign in to comment.