ses-domain

dod-iac/ses-domain/aws

Terraform Module HCL AWS

AWS SES Domain

Install
module "ses-domain" {
source = "dod-iac/ses-domain/aws"
version = "1.0.0"
}
plain text: /constructs/tfmod-dod-iac-ses-domain-aws/install.txt
⭐ Source on GitHub 📦 Registry page
README

Usage Setup a SES domain and generate DKIM tokens. ``hcl module "ses_domain" { source = "dod-iac/ses-domain/aws" dkim = true domain = "example.com" } ` Setup a SES domain, verify using Route 53, generate DKIM tokens, and setup for DKIM signing using Route 53. `hcl module "ses_domain" { source = "dod-iac/ses-domain/aws" dkim = true domain = "example.com" route53_dkim = true route53_verification = true route53_zone_id = var.route53_zone_id } ` Terraform Version Terraform 0.12. Pin module version to ~> 1.0.0 . Submit pull-requests to master branch. Terraform 0.11 is not supported. License This project constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. However, because the project utilizes code licensed from contributors a

Inputs (5)
NameTypeDescriptionDefault
domainstringThe domain name to assign to SES. required
dkimboolGenerate DKIM tokens for the SES domain.false
route53_dkimboolAdds CNAME records to the provided Route 53 zone to enable DKIM signing.false
route53_verificationboolAdds TXT record to the provided Route 53 zone to verify the domain.false
route53_zone_idstringThe id of the Route 53 zone that is used for domain verification and DKIM record""
Outputs (4)
domain_identity_arn — The ARN of the domain identity.
domain_identity_id — The ID of the domain identity.
domain_verification_token — A code which when added to the domain as a TXT record will signal to SES that the owner of the domai
dkim_tokens — DKIM tokens generated by SES. These tokens should be used to create CNAME records used to verify SES
Resources (4)
aws_route53_recordaws_ses_domain_dkimaws_ses_domain_identityaws_ses_domain_identity_verification
Topics & Tags
terraformawsses
Details
FrameworkTerraform Module
LanguageHCL
Version1.0.0
Cloud AWS
★ Stars1
Forks2
Total downloads6.3k
Inputs5
Outputs4
Resources4
LicenseMIT
Namespacedod-iac
Updated