Skip to content

Commit 12786ab

Browse files
authored
chore: add TXT dns record for domain verification with MS (#220)
1 parent 2cf7185 commit 12786ab

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

terraform/website/dns.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2+
# TXT record for domain verification with Microsoft
3+
resource "aws_route53_record" "txt_record" {
4+
zone_id = data.aws_route53_zone.main.zone_id
5+
name = "@"
6+
type = "TXT"
7+
ttl = 3600
8+
records = ["MS=ms21173179"]
9+
}
10+
111
# main A record alias to the Cloudfront hostname
212
resource "aws_route53_record" "www_a" {
313
zone_id = data.aws_route53_zone.main.zone_id

0 commit comments

Comments
 (0)