Skip to content

babbel/terraform-aws-ses-sending-domain

Repository files navigation

Terraform module creating AWS SES sending domain

This module configures a sending domain for SES allowing email addresses with that domain to be used in the From field of the emails sent via SES.

This includes the following components:

Example

resource "aws_route53_zone" "email-example" {
  name = "email.example.com"
}

module "ses-sending-domain-example" {
  source  = "babbel/ses-sending-domain/aws"
  version = "~> 1.3"

  domain_name    = "example.com"
  route53_zone   = aws_route53_zone.email-example
  sns_topic_name = "example"
}