https://github.com/skyscrapers/terraform-ses
https://github.com/skyscrapers/terraform-ses
aws aws-ses terraform terraform-module terraform-modules
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/skyscrapers/terraform-ses
- Owner: skyscrapers
- License: mit
- Created: 2017-08-30T13:25:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-07-18T09:55:05.000Z (about 6 years ago)
- Last Synced: 2025-04-19T22:02:28.585Z (6 months ago)
- Topics: aws, aws-ses, terraform, terraform-module, terraform-modules
- Language: HCL
- Size: 11.7 KB
- Stars: 19
- Watchers: 6
- Forks: 16
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-ses
Terraform module to setup AWS SES.
This module creates an AWS SES resource and adds DKIM records to the provided Route53 zone ID.
## Available variables
* \[`domain`\]: String(required): Domain to use for SES.
* \[`zone_id`\]: String(optional): Route 53 zone ID for the SES domain verification. If the `zone_id` is not set, we do not create verification record in R53.
* \[`ses_records`\]: List(optional): Additional entries which are added to the _amazonses record## Output
* \[`domain_identity_arn`\]: String: ARN of the SES domain identity.
## Example
```terraform
module "ses" {
source = "../../modules/ses"
domain = "${var.domain_name}"
zone_id = "${aws_route53_zone.zone.zone_id}"
}
```