2 min read
When we are deploying infrastructure using terraform we need to understand that we should not be modifying what we have deployed, otherwise terraform will undo these changes if we apply it again. This is actually a good thing to make sure the code reflex the state of the infrastructure but sometimes can be a pain
24/01/2022
Read more...2 min read
Starting terraform v0.12 we can get the terraform plan in json format. To do so, first we will need to save the plan to a file:
$ terraform plan -out demo.plan
28/01/2021
Read more...