We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12786ab commit 23e0616Copy full SHA for 23e0616
1 file changed
terraform/website/dns.tf
@@ -1,5 +1,12 @@
1
+# domain verification with Microsoft
2
+resource "aws_route53_record" "mx_verification" {
3
+ zone_id = data.aws_route53_zone.main.zone_id
4
+ name = "@"
5
+ type = "MX"
6
+ ttl = 3600
7
+ records = ["10 ms21173179.msv1.invalid"]
8
-# TXT record for domain verification with Microsoft
9
10
resource "aws_route53_record" "txt_record" {
11
zone_id = data.aws_route53_zone.main.zone_id
12
name = "@"
0 commit comments