https://github.com/ironcore864/tfm-lambda-edge
https://github.com/ironcore864/tfm-lambda-edge
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ironcore864/tfm-lambda-edge
- Owner: IronCore864
- Created: 2019-10-31T10:51:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-31T10:53:48.000Z (over 6 years ago)
- Last Synced: 2025-07-31T17:51:42.232Z (12 months ago)
- Language: HCL
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Terraform Module - Lambda Edge
Creates lambda edge role, with cloudwatch permission to write logs to, and a bunch of lambda functions loading source from s3, used for cloudfront.
## Usage
Example:
```
provider "aws" {
alias = "us-east-1"
region = "us-east-1"
}
module "lambda" {
source = "git::https://github.com/IronCore864/tfm-lambda-edge.git"
naming_prefix = "xxx"
s3_bucket = "xxx"
providers = {
aws = aws.us-east-1
}
}
```
Lambda Edge must be in us-east-1 region.