Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement aws ses terraform module #1

Merged
merged 4 commits into from
Nov 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,15 @@

## Providers

No provider.
| Name | Version |
|------|---------|
| aws | n/a |

## Inputs

No input.
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| domain | The domain name to assign to SES | `string` | n/a | yes |

## Outputs

Expand Down
3 changes: 3 additions & 0 deletions _data.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
data "aws_route53_zone" "main" {
name = var.domain
}
4 changes: 4 additions & 0 deletions _variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
variable "domain" {
type = string
description = "The domain name to assign to SES"
}
37 changes: 37 additions & 0 deletions ses.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
resource "aws_ses_domain_identity" "ses_domain" {
domain = var.domain
}

resource "aws_ses_domain_mail_from" "ses_domain_mail_from" {
domain = aws_ses_domain_identity.ses_domain.domain
mail_from_domain = "mail.${aws_ses_domain_identity.ses_domain.domain}"
}

resource "aws_ses_domain_dkim" "ses_domain_dkim" {
domain = join("", aws_ses_domain_identity.ses_domain.*.domain)
}

resource "aws_route53_record" "amazonses_verification_record" {
zone_id = data.aws_route53_zone.main.zone_id
name = "_amazonses.${var.domain}"
type = "TXT"
ttl = "600"
records = [join("", aws_ses_domain_identity.ses_domain.*.verification_token)]
}

resource "aws_route53_record" "amazonses_dkim_record" {
count = 3
zone_id = data.aws_route53_zone.main.zone_id
name = "${aws_ses_domain_dkim.ses_domain_dkim.dkim_tokens[count.index]}._domainkey"
type = "CNAME"
ttl = "600"
records = ["${aws_ses_domain_dkim.ses_domain_dkim.dkim_tokens[count.index]}.dkim.amazonses.com"]
}

resource "aws_route53_record" "ses_domain_mail_from_txt" {
zone_id = data.aws_route53_zone.main.zone_id
name = aws_ses_domain_mail_from.ses_domain_mail_from.mail_from_domain
type = "TXT"
ttl = "600"
records = ["v=spf1 include:amazonses.com -all"]
}