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