From 5ef14d54457756185684b2d738c598964d48d23c Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 13 Apr 2021 13:59:33 -0400 Subject: [PATCH] v1.10.2: [ses-domain] update use case text to be more descriptive --- CHANGELOG.md | 4 ++++ common/version.tf | 2 +- ses-domain/bin/move-to-production.sh | 19 ++++++++++++++++++- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c360c5..a0e1115 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -83,3 +83,7 @@ * v1.10.1 -- 20210408 - vpc-remove-defaults - add `region` and `profile` variables + +* v1.10.2 -- 20210413 + - ses-domain + - update use case text to be more descriptive diff --git a/common/version.tf b/common/version.tf index 2bd0272..e8d4dab 100644 --- a/common/version.tf +++ b/common/version.tf @@ -1,3 +1,3 @@ locals { - _module_version = "1.10.1" + _module_version = "1.10.2" } diff --git a/ses-domain/bin/move-to-production.sh b/ses-domain/bin/move-to-production.sh index 2bc2168..e8ad505 100755 --- a/ses-domain/bin/move-to-production.sh +++ b/ses-domain/bin/move-to-production.sh @@ -22,9 +22,26 @@ then exit 1 fi +# message on initial request before updating +# +# Thank you for submitting your request to increase your sending limits. We are unable to grant your request at this time because we do not have enough information about your use case. +# +# If you can provide additional information about how you plan to use Amazon SES, we may be able to grant your request. In your response, include as much detail as you can about your email-sending processes and procedures. +# +# For example, tell us how often you send email, how you maintain your recipient lists, and how you manage bounces, complaints, and unsubscribe requests. It is also helpful to provide examples of the email you +# plan to send so we can ensure that you are sending high-quality content. +# +# You can provide this information by replying to this message. Our team provides an initial response to your request within 24 hours. If we’re able to do so, we'll +# grant your request within this 24-hour period. However, if we need to obtain additional information from you, it might take longer to resolve your request. +# + if [ -z $SES_USE_CASE_DESCRIPTION ] then - SES_USE_CASE_DESCRIPTION="Used for alerting and notification from lambda and other applications to users registered within our own enterprise mail system." + SES_USE_CASE_DESCRIPTION="Used for alerting and notification from lambda and other applications to users registered within our own enterprise mail system. " + SES_USE_CASE_DESCRIPTION+="No mailing lists are used. Each address which will receive mail is pulled from tags on IAM user accounts. " + SES_USE_CASE_DESCRIPTION+="We intend to send a very low volume of mail to registered IAM accounts on specific events such as expiration or nearing expiration " + SES_USE_CASE_DESCRIPTION+="of a password or access key. Bounces and complaints will be handled through SNS. As there is no list, there is nothing to unsubscribe. " + SES_USE_CASE_DESCRIPTION+="Because these are all our users, and tend to be administrative users, they are all completely under our policy and control." fi if [ -z $SES_ADDITIONAL_CONTACT_EMAIL ]