Skip to content

AcroMedia/terraform-module-ses-smtp-user

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-module-ses-smtp-user

Creates IAM credentials (with inline policy) to be used with AWS SES service.

Your SES identity must be verified separately.

Example implementation:

module "smtp_user" {
  providers = {
    aws.src = aws
  }
  source = "git@github.com:AcroMedia/terraform-module-ses-smtp-user.git?ref=main"
  username = "smtp_user.foo"
  tags = {
    foo = "bar"
  }
}

output "smtp_username" {
  value = module.smtp_user.smtp_username
}

output "smtp_password" {
  value = module.smtp_user.smtp_password
  sensitive = true
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages