Skip to content
This repository has been archived by the owner on Jun 19, 2021. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kostyaplis committed Dec 3, 2019
1 parent 9e3dc70 commit 5eff40d
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 @@ -27,10 +27,10 @@ resource "aws_route53_record" "dkim" {
zone_id = var.route53_zone_id
name = format(
"%s._domainkey.%s",
element(aws_ses_domain_dkim.main.dkim_tokens, count.index),
element(aws_ses_domain_dkim.this.dkim_tokens, count.index),
var.domain_name,
)
type = "CNAME"
ttl = "600"
records = ["${element(aws_ses_domain_dkim.main.dkim_tokens, count.index)}.dkim.amazonses.com"]
records = ["${element(aws_ses_domain_dkim.this.dkim_tokens, count.index)}.dkim.amazonses.com"]
}

0 comments on commit 5eff40d

Please sign in to comment.