FAUNβ€Šβ€”β€ŠDeveloper Community 🐾

We help developers learn and grow by keeping them up with what matters. πŸ‘‰ www.faun.dev

Follow publication

Member-only story

Organize Terragrunt configuration for production grade environment and deploy with Github Actions.

Clouders
FAUNβ€Šβ€”β€ŠDeveloper Community 🐾
5 min readApr 29, 2023

--

Photo by Raymond Rasmusson on Unsplash

Terraform has been around for so many years now and is definitely winning the IaaC race by some distance. Though the engineering folks at HashiCorp are building and releasing new features periodically but the Terraform user fraternity continues to face certain gaps.

Terragrunt enters the scene.

Terragrunt is a thin wrapper that provides extra tools for keeping your configurations DRY, working with multiple Terraform modules, and managing remote state.

Masses have struggled to understand the point and need of Terragrunt and when to use it. In simpler words, Terragrunt is an orchestrator to orchestrate Terraform code, execution and deployment.

This article is not about the benefits of Terragrunt or a tutorial to setup but a tried and tested way to organise folders, structure environments in Terragrunt.

Directory structure

.
└── terragrunt.hcl
β”œβ”€β”€ prod
β”‚ β”œβ”€β”€ aks
β”‚ β”‚ β”œβ”€β”€ terragrunt.hcl
β”‚ β”‚ └── module.yaml
β”‚ β”œβ”€β”€ vnet
β”‚ β”‚ β”œβ”€β”€ terragrunt.hcl
β”‚ β”‚ └── module.yaml
β”‚ └── environment_common_vars.yaml
β”œβ”€β”€ staging
β”‚ β”œβ”€β”€ aks
β”‚ β”‚ β”œβ”€β”€ terragrunt.hcl
β”‚ β”‚ └── module.yaml
β”‚ β”œβ”€β”€ vnet
β”‚ β”‚ β”œβ”€β”€ terragrunt.hcl
β”‚ β”‚ └── module.yaml
β”‚ └── environment_common_vars.yaml
└── dev
β”œβ”€β”€ aks
β”‚ β”œβ”€β”€ terragrunt.hcl
β”‚ └── module.yaml
β”œβ”€β”€ vnet
β”‚ β”œβ”€β”€ terragrunt.hcl
β”‚ └── module.yaml
└── environment_common_vars.yaml

In the above structure, each environment like prod, staging, dev, etc. is represented as a folder, containing Terraform modules configuration which needs to be deployed.

Each environment has its own environment_common_vars.yaml which contains environment specific variables.

Each Terraform module has its own module.yaml and terragrunt.hcl which represents module specific variables and terragrunt configuration respectively.

_________________________________________________________________

--

--

No responses yet

Write a response