A Quick Review
We quickly review what we've covered so far, and then run some extra commands.
Some things we cover:
Then we show the use of terraform fmt
, which can autoformat any file ending in .tf
.
Finally, we cover how we can have terraform plan
output the results (the plan), which makes the apply
command run faster (it does not need to re-calculate what it will apply).
1terraform plan -out output.hcl2terraform apply output.hcl