Skip to content

Commit

Permalink
Update main.tf (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcincuber authored Oct 7, 2020
1 parent ab4af97 commit 52a678f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ resource "aws_route53_record" "spf_mail_from" {
name = aws_ses_domain_mail_from.main.mail_from_domain
type = "TXT"
ttl = "600"
records = ["${var.spf_txt_record}"]
records = [var.spf_txt_record]
}

resource "aws_route53_record" "spf_domain" {
Expand All @@ -47,7 +47,7 @@ resource "aws_route53_record" "spf_domain" {
name = data.aws_route53_zone.domain.name
type = "TXT"
ttl = "600"
records = ["${var.spf_txt_record}"]
records = [var.spf_txt_record]
}

resource "aws_route53_record" "ses_domain_mail_from_mx" {
Expand Down

0 comments on commit 52a678f

Please sign in to comment.