Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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"
}
```