terraform-best-practices
terraform-best-practices copied to clipboard
Terraform Best Practices free ebook translated into ๐ฌ๐ง๐ฆ๐ช๐ง๐ฆ๐ง๐ท๐ซ๐ท๐ฌ๐ช๐ฉ๐ช๐ฌ๐ท๐ฎ๐ฑ๐ฎ๐ณ๐ฎ๐ฉ๐ฎ๐น๐ฐ๐ท๐ต๐ฑ๐ท๐ด๐จ๐ณ๐ช๐ธ๐น๐ท๐บ๐ฆ๐ต๐ฐ
## Add a section about providers versions/dependencies best practices - Recommendation on implementing providers version constraints. How to implement the `version_constraint` in the `required_providers` block : `version = "~> 1.0.0"`...
I have a terraform script. The hierarchy is as follows: /root โโmain.tf โโvariables.tf โโprovider.tf The script is as follows: # Step 1: Define Resource Group resource "azurerm_resource_group" "rg" { location...