https://github.com/rpstreef/terraform-aws-ses
AWS Simple Email Service (SES) Terraform Module, configures Route53 records and a minimal SES with mail FROM domain
https://github.com/rpstreef/terraform-aws-ses
aws-ses route53 terraform terraform-module
Last synced: 6 months ago
JSON representation
AWS Simple Email Service (SES) Terraform Module, configures Route53 records and a minimal SES with mail FROM domain
- Host: GitHub
- URL: https://github.com/rpstreef/terraform-aws-ses
- Owner: rpstreef
- License: apache-2.0
- Created: 2020-11-23T08:47:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-24T04:27:45.000Z (almost 5 years ago)
- Last Synced: 2025-02-15T20:54:05.507Z (8 months ago)
- Topics: aws-ses, route53, terraform, terraform-module
- Language: HCL
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS Simple Email Service (SES) Terraform Module
## Introduction
This module configures AWS SES and Route53 ready for use with any service that may require email sending such as AWS Cognito.
## Configuration
To get the latest version, use the ``master`` branch, otherwise use the ``?ref=`` parameter to specify which version you want to use.
```terraform
module "ses" {
source = "github.com/rpstreef/terraform-aws-ses?ref=v1.0"route53_zone_id = "Z141234029XXPUKGZ57OJ"
domain = "somedomain.com"
}
```## Change log
### v1.1
- Added standard ``noreply`` from address, you can gets the ``arn`` and email address string from the ``outputs.tf`` of this module.### v1.0
- Initial release