An open API service indexing awesome lists of open source software.

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

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