Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 days 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 (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T17:39:15.000Z (7 months ago)
- Last Synced: 2024-06-21T15:42:02.652Z (5 months ago)
- Topics: aws, golang, ses
- Language: Go
- Size: 43 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# terraform-aws-ses-forwarder [![Coverage Status](https://coveralls.io/repos/github/LouisBrunner/terraform-aws-ses-forwarder/badge.svg?branch=main)](https://coveralls.io/github/LouisBrunner/terraform-aws-ses-forwarder?branch=main) [![Go Report Card](https://goreportcard.com/badge/github.com/LouisBrunner/terraform-aws-ses-forwarder)](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
```