How to leverage Pre-commits hooks with Terraform

Originally posted on Sokube’s blog. The importance of testing your code as soon as possible In the Agile world, development teams are required to reduce delivery time as much as possible while continuously improving the quality of the code produced. Indeed, it is important that at each release, the version is documented, tested, validated and secure …

How to leverage Pre-commits hooks with Terraform Read More »

DevOps Series : Terraform Cheatsheet

General CLI Commands Install modules, backend and plugins $ terraform init Create Plan & Dry run $ terraform plan $ terraform plan -out plan.out Execute Plan $ terraform apply $ terraform apply -auto-approve Taint resource (mark for recreation) $ terraform taint $ terraform untaint Synchronize state with remote resources $ terraform refresh Import resource $ …

DevOps Series : Terraform Cheatsheet Read More »