What does the terraform plan command do?

The terraform plan command is used to preview the changes that Terraform will make to your infrastructure before actually applying them. It’s a review tool that lets you see what actions Terraform will perform, without making any real changes.

What ex…


This content originally appeared on DEV Community and was authored by Said Olano

The terraform plan command is used to preview the changes that Terraform will make to your infrastructure before actually applying them. It’s a review tool that lets you see what actions Terraform will perform, without making any real changes.

What exactly does terraform plan do?
Reads the .tf configuration files.

Compares the current state (stored in the terraform.tfstate file or in a remote backend) with the desired configuration.

Displays a detailed plan of the actions Terraform would take to reach the desired state.

Actions you might see:

  • (create): Terraform will create a new resource.

  • (destroy): Terraform will delete an existing resource.

~ (update in-place): Terraform will update an existing resource.

What is it used for?
To verify that the changes you're about to make are correct.

To avoid mistakes before applying changes to production.

To allow team members to review changes before execution.

Image description


This content originally appeared on DEV Community and was authored by Said Olano


Print Share Comment Cite Upload Translate Updates
APA

Said Olano | Sciencx (2025-06-30T20:36:40+00:00) What does the terraform plan command do?. Retrieved from https://www.scien.cx/2025/06/30/what-does-the-terraform-plan-command-do/

MLA
" » What does the terraform plan command do?." Said Olano | Sciencx - Monday June 30, 2025, https://www.scien.cx/2025/06/30/what-does-the-terraform-plan-command-do/
HARVARD
Said Olano | Sciencx Monday June 30, 2025 » What does the terraform plan command do?., viewed ,<https://www.scien.cx/2025/06/30/what-does-the-terraform-plan-command-do/>
VANCOUVER
Said Olano | Sciencx - » What does the terraform plan command do?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/06/30/what-does-the-terraform-plan-command-do/
CHICAGO
" » What does the terraform plan command do?." Said Olano | Sciencx - Accessed . https://www.scien.cx/2025/06/30/what-does-the-terraform-plan-command-do/
IEEE
" » What does the terraform plan command do?." Said Olano | Sciencx [Online]. Available: https://www.scien.cx/2025/06/30/what-does-the-terraform-plan-command-do/. [Accessed: ]
rf:citation
» What does the terraform plan command do? | Said Olano | Sciencx | https://www.scien.cx/2025/06/30/what-does-the-terraform-plan-command-do/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.