This project uses Terragrunt to automate the cloud infrastructure configuration. Terragrunt is a Terraform management tool that provides an additional layer of abstraction and configuration management.
- Cloud account (AWS, Google Cloud, Azure, etc.)
- Terraform installation
- Terragrunt installation
- Clone this repository to your local development environment.
- Configure the necessary environment variables to access your cloud account (see
terraform.tfvarsfile). - Run the
terragrunt initcommand at the root of the project to download all Terraform dependencies. - Run the
terragrunt applycommand to apply the configurations to your cloud account.
The project is structured in directories, where each directory represents an infrastructure configuration. The terragrunt.hcl file in each directory specifies the Terraform configurations for that resource.
- Make sure you have permission to access your cloud account before running the
terragrunt applycommand. - Make sure the configurations in
terraform.tfvarsare according to your needs before running theterragrunt applycommand.