Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/trackit/terraform-boilerplate
https://github.com/trackit/terraform-boilerplate
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/trackit/terraform-boilerplate
- Owner: trackit
- Created: 2020-07-21T08:54:24.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-05T15:16:40.000Z (over 3 years ago)
- Last Synced: 2024-08-02T15:21:24.584Z (3 months ago)
- Language: HCL
- Size: 165 KB
- Stars: 55
- Watchers: 7
- Forks: 14
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
👋 Welcome to terraform-boilerplate!
> Terraform boilerplate is a repository aiming to help DevOps to deploy infrastructure on AWS
This project is using terraform to deploy infrastructure, you can download it here: https://learn.hashicorp.com/tutorials/terraform/install-cli
## 📚 Usage
The project is aimed to be used with `terraform workspace` which is why there is the `envs` directory. Feel free to create new files in this folder to overwrite default variables defined in [tf/2-variables.tf](./tf/2-variables.tf).
[envs/qa.tfvars](./envs/qa.tfvars) is use in our CI/CD pipeline to make sure the code we want to merge can be deployed.
### 🚀 Deploy
```sh
$ cd ./tf
$ terraform init
$ terraform plan -var-file ../envs/qa.tfvars
$ terraform apply -var-file ../envs/qa.tfvars
```### 💣 Destroy
```sh
$ terraform destroy -var-file ../envs/qa.tfvars
```## 💻 Testing
You can find in the [.github/workflows](./.github/workflows) folder different QA that you can run to test with Github:
- [terraform.yml](./.github/workflows/terraform.yml): automatically running on master and PR when you push. This make a terraform init & plan
- [terraform-qa.yml](./.github/workflows/terraform-qa.yml): manually triggered in Github Actions. This make a terraform init, plan, apply & destroy
- [terraform-qa-no-destroy](./.github/workflows/terraform-qa-no-destroy.yml): manually triggered in Github Actions. This make a terraform init, plan & apply
- [terraform-qa-only-destroy](./.github/workflows/terraform-qa-only-destroy.yml): manually triggered in Github Actions. This make a terraform init & destroy
- [terraform-everyday-only-destroy](./.github/workflows/terraform-everyday-only-destroy.yml): automatically triggered everyday in Github Actions. This make a terraform init & destroy on all workspaces## ✅ Services Available
Here are the services that you can deploy using this repository:
- [AWS Route53](./tf/route53.tf)
- [AWS RDS](./tf/rds.tf)
- [AWS Backup](./tf/backup.tf)
- [AWS ECR](./tf/ecr.tf)
- [AWS Elasticache](./tf/elasticache.tf)
- [AWS EKS](./tf/eks.tf)
- [AWS VPC](./tf/vpc.tf)
- [AWS Lambda](./tf/lambda.tf)
- [AWS CloudTrail](./tf/cloudtrail.tf)
- [AWS Cognito](./tf/cognito.tf)
- [AWS ECS](./tf/ecs.tf)
- [AWS SNS](./tf/sns.tf)## 🤝 Missing a specific feature?
Feel free to ask for the features you want! Our teams will be happy to add them!
## ❤️ Show your support
Give a ⭐️ if this project helped you!
## ✏️ Author
### 👤 Trackit
- Website: [trackit.io](www.trackit.io)### 👥 About us
We are an Amazon Web Services Advanced Consulting Partner specializing in cloud management, consulting, and software development solutions based in Venice, CA.