Skip to content

Commit

Permalink
feat: Delegation for Digital Earth Canada (DEC) (#428)
Browse files Browse the repository at this point in the history
Creates zone delegation for the Digital Earth Canada PoC being run by
CSA/ECCC/NRCan, hosted in SSC Science Program's AWS tenant.

DEC is an effort to centrally provide environments for GoC scientists that
use Earth Observartion (EO) data for their tasks. It will host AI/ML
platforms, EO data (satellite, plane, drone, etc..) and other tools.

Co-authored-by: gcglinton <[email protected]>
  • Loading branch information
patheard and gcglinton authored Oct 25, 2024
1 parent cc9af6f commit c654249
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions terraform/dec.alpha.canada.ca.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resource "aws_route53_record" "dec-alpha-canada-ca-NS" {
zone_id = aws_route53_zone.alpha-canada-ca-public.zone_id
name = "dec.alpha.canada.ca"
type = "NS"
records = [
"ns-1030.awsdns-00.org",
"ns-8.awsdns-01.com",
"ns-1885.awsdns-43.co.uk",
"ns-892.awsdns-47.net"
]
ttl = "300"
}

0 comments on commit c654249

Please sign in to comment.