We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf7185 commit 12786abCopy full SHA for 12786ab
1 file changed
terraform/website/dns.tf
@@ -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
11
# main A record alias to the Cloudfront hostname
12
resource "aws_route53_record" "www_a" {
13
zone_id = data.aws_route53_zone.main.zone_id
0 commit comments