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.tfvars
file). - Run the
terragrunt init
command at the root of the project to download all Terraform dependencies. - Run the
terragrunt apply
command 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 apply
command. - Make sure the configurations in
terraform.tfvars
are according to your needs before running theterragrunt apply
command.