From 8665fe0960f99a788be55b3950818189d31c77d5 Mon Sep 17 00:00:00 2001 From: badra001 Date: Thu, 1 Apr 2021 16:45:11 -0400 Subject: [PATCH] fix --- ses-domain/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ses-domain/main.tf b/ses-domain/main.tf index a11377f..9a05e1a 100644 --- a/ses-domain/main.tf +++ b/ses-domain/main.tf @@ -266,7 +266,7 @@ resource "aws_sns_topic_policy" "ses_event" { resource "aws_ses_identity_notification_topic" "ses_event" { for_each = toset(local.ses_event_types) topic_arn = aws_sns_topic.ses_event[0].arn - notification_type = each.key + notification_type = title(each.key) identity = aws_ses_domain_identity.this.domain include_original_headers = true }