Skip to content

Commit d19a141

Browse files
committed
CCM-10296: fix ses dkim validation domain name
1 parent 5ac636a commit d19a141

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infrastructure/terraform/components/app/route53_record_ses_dkim_validation.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ resource "aws_route53_record" "ses_dkim_validation" {
22
count = 3
33

44
zone_id = local.acct.dns_zone["id"]
5-
name = "${aws_ses_domain_dkim.main.dkim_tokens[count.index]}._domainkey"
5+
name = "${aws_ses_domain_dkim.main.dkim_tokens[count.index]}._domainkey.${aws_ses_domain_identity.main.id}"
66
type = "CNAME"
77
ttl = "300"
88
records = [

0 commit comments

Comments
 (0)