-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d2d976c
commit da51b70
Showing
2 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
# Purpose | ||
This module is used to set up SES (Simple email service) in AWS. | ||
|
||
By setting a few variables we are able to create a number of Email addresses and Domains | ||
to AWS SES. The variables to be set are: | ||
|
||
- `email_identities`, example: `["example@sagebase.org"]` | ||
- `email_domains`, example `["sagebase.org"]` | ||
|
||
# Manual steps required | ||
After running this module a number of manual steps are required as they are external | ||
processes that need to happen: | ||
|
||
## Verify Email address | ||
1) Navigate to Amazon SES in the web console | ||
2) Navigate to `identities` | ||
3) Choose the Identity to verify | ||
4) Send a test email and click the link recieved to verify the email | ||
|
||
Optional: Send a test email after verifying to confirm you may recieve emails | ||
|
||
|
||
## Verify Sending domain | ||
This is required for each AWS account where AWS SES is going to be set up. | ||
|
||
Reading: <https://docs.aws.amazon.com/ses/latest/dg/creating-identities.html#just-verify-domain-proc> | ||
|
||
1) Navigate to Amazon SES in the web console | ||
2) Navigate to `identities` | ||
3) Choose the Domain to verify | ||
4) Download the DKIM under `Publish DNS records` and create an IT ticket to add the records | ||
5) Example IT ticket for reference: <https://sagebionetworks.jira.com/browse/IT-3965> |