https://github.com/louisbrunner/terraform-aws-ses-forwarder
Go Lambda to send a SES email as an email
https://github.com/louisbrunner/terraform-aws-ses-forwarder
aws golang ses
Last synced: 3 months ago
JSON representation
Go Lambda to send a SES email as an email
- Host: GitHub
- URL: https://github.com/louisbrunner/terraform-aws-ses-forwarder
- Owner: LouisBrunner
- License: mit
- Created: 2018-08-18T15:21:37.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T17:39:15.000Z (about 1 year ago)
- Last Synced: 2025-03-28T19:44:54.860Z (3 months ago)
- Topics: aws, golang, ses
- Language: Go
- Size: 43 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-aws-ses-forwarder [](https://coveralls.io/github/LouisBrunner/terraform-aws-ses-forwarder?branch=main) [](https://goreportcard.com/report/github.com/LouisBrunner/terraform-aws-ses-forwarder)
AWS Lambda (written in Go) to forward emails using AWS SES.
## Usage
### Terraform module
```hcl
resource "aws_route53_zone" "domain" {
name = "example.com"
}module "email" {
source = "LouisBrunner/ses-forwarder/aws"
version = "2.0.0"
prefix = "forwarder"emails = {
"example.com" = [
{regex = "^camille$", forward_to = ["[email protected]"]}
]
}
}
```### Docker image
You can also use the Docker image directly:
```bash
docker pull ghcr.io/louisbrunner/terraform-aws-ses-forwarder:v2.0.0
```