Skip to content

Commit

Permalink
v1.10.2: [ses-domain] update use case text to be more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Apr 13, 2021
1 parent 07021fe commit 5ef14d5
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.10.1"
_module_version = "1.10.2"
}
19 changes: 18 additions & 1 deletion ses-domain/bin/move-to-production.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ]
Expand Down

0 comments on commit 5ef14d5

Please sign in to comment.