Ad space (banner)
AD

Got the fundamentals? A structured Terraform course is a fast way to level up.

Find Terraform courses on Udemy

Affiliate link. Costs you nothing extra.

Lesson 21 / 37

What Is a Workspace?

Workspaces let one configuration directory hold several independent states — typically one per environment.

Each workspace has its own state file, so resources created in staging are entirely separate from those in default.

Running terraform workspace list shows the workspaces that exist and marks the active one with *.

A common stumble is forgetting which workspace is selected and applying to the wrong environment. Check before you apply.

In real work, many teams prefer separate directories or separate state backends per environment, because the isolation is more obvious to the eye.

Terraform
Try it (type this into the pseudo terminal)
terraform workspace list

🧑‍💻 You can type this command into the Terraform pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)