Search⌘ K
AI Features

Plan with Terraform

Explore how to break down the Terraform apply process by using the plan and show commands. Understand state file management and gain control over resource creation and deletion through step-by-step practice with local files.

Terraform states are very useful when running Terraform in practice.

The terraform plan and terraform show commands

To look at the terraform plan and terraform show commands, wecreate a new directory named ltthw_plan and a hello_plan.tf file in it that will manage a local file. We have executed terraform init already. ...