Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jareechang/tf-modules
terraform modules
https://github.com/jareechang/tf-modules
aws aws-alb aws-iam aws-nat-gateway aws-route-table aws-subnet aws-vpc terraform tf-module
Last synced: 27 days ago
JSON representation
terraform modules
- Host: GitHub
- URL: https://github.com/jareechang/tf-modules
- Owner: Jareechang
- License: mit
- Created: 2021-08-18T02:25:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-10-08T02:29:31.000Z (about 1 year ago)
- Last Synced: 2023-10-08T03:25:44.903Z (about 1 year ago)
- Topics: aws, aws-alb, aws-iam, aws-nat-gateway, aws-route-table, aws-subnet, aws-vpc, terraform, tf-module
- Language: HCL
- Homepage:
- Size: 43 KB
- Stars: 2
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Terraform modules
A few re-usable TF modules to speed up the dev process.
### Modules
- [Networking](./networking/README.md)
- [ALB](./alb/README.md)
- **IAM**
- [ECR](./iam/ecr/README.md)
- [ECS](./iam/ecs/README.md)
- **Cloudwatch**
- **Alarms:**
- [ALB - Http error rate](./cloudwatch/alarms/alb-http-errors/README.md)
- [Cloudwatch Logs - Application Errors](./cloudwatch/alarms/application-log-errors/README.md)### Versioning with tags
**Publish tags:**
```sh
git tag -a "v1.0.1" -m "First release of tf modules"
git push origin master --follow-tags
```
**Usage:**```tf
module "networking" {
source = "github.com/Jareechang/tf-modules//networking?ref=v1.0.1"
}
```