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 23 / 37

Creating a Workspace with terraform workspace new

When you need a new isolated environment, use terraform workspace new. It creates a workspace and switches to it.

The syntax is terraform workspace new name.

Running terraform workspace new staging creates the staging workspace, with an empty state, and makes it active.

A common stumble is expecting the new workspace to inherit existing resources. It starts empty — the first plan will propose creating everything.

In real work, it is how a short-lived environment for testing a change gets created and later destroyed.

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

🧑‍💻 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)