Skip to content

Commit 23e0616

Browse files
authored
chore: add mx verification record for custom domain (#221)
1 parent 12786ab commit 23e0616

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

terraform/website/dns.tf

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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"]
18

2-
# TXT record for domain verification with Microsoft
9+
# domain verification with Microsoft
310
resource "aws_route53_record" "txt_record" {
411
zone_id = data.aws_route53_zone.main.zone_id
512
name = "@"

0 commit comments

Comments
 (0)