Skip to content

Instantly share code, notes, and snippets.

@mxro
Created April 26, 2022 22:44
Show Gist options
  • Save mxro/3f2d72080a9d4f056f13d630ec10a50a to your computer and use it in GitHub Desktop.
Save mxro/3f2d72080a9d4f056f13d630ec10a50a to your computer and use it in GitHub Desktop.
resource "aws_ses_domain_identity" "ses_domain" {
domain = var.domain
}
resource "aws_ses_domain_mail_from" "main" {
domain = aws_ses_domain_identity.ses_domain.domain
mail_from_domain = "mail.${var.domain}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment