Skip to content

Commit

Permalink
feat: add the Qualtrics vanity CNAME record (#453)
Browse files Browse the repository at this point in the history
* feat: add the Qualtrics vanity CNAME record

* fix: typo

* feat: add Qualtrics custom email domain
  • Loading branch information
gcharest authored Feb 18, 2025
1 parent 50d57d9 commit 36f9271
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions terraform/cds-snc.ca.tf
Original file line number Diff line number Diff line change
Expand Up @@ -402,4 +402,26 @@ resource "aws_route53_record" "valentine-cds-snc-NS" {
"ns-1042.awsdns-02.org."
]
ttl = "1800"
}


# Qualtrics
resource "aws_route53_record" "qualtrics-cds-snc-CNAME" {
zone_id = aws_route53_zone.cds-snc-ca-public.zone_id
name = "experience.cds-snc.ca"
type = "CNAME"
records = [
"cdssnc-primary.vanitydomains.qualtrics.com"
]
ttl = "1800"
}

resource "aws_route53_record" "qualtrics-cds-snc-TXT" {
zone_id = aws_route53_zone.cds-snc-ca-public.zone_id
name = "experience._domainkey.cds-snc.ca"
type = "TXT"
records = [
"v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCDdwCodgUYxC4dYhuCicba5NvtCYPDMTkcL5iOrSGXBCX7AZ1wykjTJr5s5ZJZqIaUjigx4qp6rY7o3xO/2EL5+ldET3gk/h6MsoTSF7pRE5vsGFdmO4mIG6Vi7EBG+z1FAPsWQf0QvFGktHGkXkBGIZzA1eH56G7qj2IewufcBwIDAQAB"
]
ttl = "1800"
}

0 comments on commit 36f9271

Please sign in to comment.