https://github.com/labd/terraform-aws-mach-code-repository
Module to set up a S3 Bucket which can serve as lambda code repository
https://github.com/labd/terraform-aws-mach-code-repository
Last synced: 3 months ago
JSON representation
Module to set up a S3 Bucket which can serve as lambda code repository
- Host: GitHub
- URL: https://github.com/labd/terraform-aws-mach-code-repository
- Owner: labd
- License: mit
- Created: 2021-03-01T09:20:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-10T19:20:41.000Z (about 5 years ago)
- Last Synced: 2025-10-27T17:40:21.766Z (8 months ago)
- Language: HCL
- Size: 4.88 KB
- Stars: 0
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AWS code repository module
Module to set up a S3 Bucket which can serve as lambda code repository
## Usage
```
module "coderepository" {
source = "git::https://github.com/labd/terraform-aws-mach-code-repository.git"
name = "your-project-lambdas"
access_principle_identifiers = [
"arn:aws:iam::000000000000:user/mach-user", # MACH Test env
"arn:aws:iam::000000000000:user/mach-user", # MACH Acc env
"arn:aws:iam::000000000000:user/mach-user", # MACH Prod env
]
deploy_principle_identifiers = []
}
```