Skip to content

Commit

Permalink
chore(lint)
Browse files Browse the repository at this point in the history
  • Loading branch information
esinx committed Mar 2, 2024
1 parent a015bd1 commit 0082030
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions terraform/modules/domain/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@ resource "aws_route53_record" "wildcard" {
}

resource "aws_route53_record" "spf" {
zone_id = aws_route53_zone.domain.zone_id
name = ""
type = "TXT"
ttl = 3600
records = ["v=spf1 include:mailgun.org ~all"]
zone_id = aws_route53_zone.domain.zone_id
name = ""
type = "TXT"
ttl = 3600
records = ["v=spf1 include:mailgun.org ~all"]
multivalue_answer_routing_policy = true
set_identifier = "spf"
set_identifier = "spf"
}

resource "aws_route53_record" "mailgun" {
zone_id = aws_route53_zone.domain.zone_id
name = "email"
type = "CNAME"
ttl = 3600
records = ["mailgun.org."]
zone_id = aws_route53_zone.domain.zone_id
name = "email"
type = "CNAME"
ttl = 3600
records = ["mailgun.org."]
multivalue_answer_routing_policy = true
set_identifier = "mailgun"
set_identifier = "mailgun"
}

resource "aws_route53_record" "gmail" {
Expand Down

0 comments on commit 0082030

Please sign in to comment.