terraform-best-practices
terraform-best-practices copied to clipboard
Terraform Best Practices free ebook translated into 🇬🇧🇦🇪🇧🇦🇧🇷🇫🇷🇬🇪🇩🇪🇬🇷🇮🇱🇮🇳🇮🇩🇮🇹🇰🇷🇵🇱🇷🇴🇨🇳🇪🇸🇹🇷🇺🇦🇵🇰
I was talking to a user today who referred to the best practices website, and said Infracost should be listed in the 'tools to be aware of' (https://www.terraform-best-practices.com/faq#what-are-the-tools-i-should-be-aware-of-and-consider-using). I thought...
First of all, thanks for providing this great book! The [Getting started with structuring of Terraform configurations](https://www.terraform-best-practices.com/code-structure#getting-started-with-structuring-of-terraform-configurations) section states that `terraform.tfvars` files should exclusively be used with composition: > `terraform.tfvars`...
I was referred to your repo from a colleague of mine who spoke very highly of you. The main thing i question is having both your prod and staging environments...
I saw you touch on dependencies in https://github.com/antonbabenko/terraform-best-practices/blob/master/not-best-practices/faq.md but I was wondering if you could point to a resource for how to manage terraform dependencies.. My current organization does something...
The Terragrunt code example page is broken. Page is empty. https://www.terraform-best-practices.com/examples/terragrunt
I saw a March 2018 goal to update and finish these. Poke!
Handling of `versions.tf` is simple in a simple single directory/module project, but as a project becomes complex, starts using in-house as well as third-party modules, then `versions.tf` raise numerous questions...
## Is your feature request related to a problem? Please describe. When an organization defines the (coding) style that should be followed, it comes in handy to just reference a...
Just to help guys, who started to use Terraform after v0.12.6 and do not remember a pain with loops with a count operator.
A practice to split long nested ternary operators into multiple locals for readability. To avoid the same hell problem inherited from JavaScript.