Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 528 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 528 Bytes

terraform-workspace

Understanding how workspaces work in terraform, and how to isolate dev, test, stage and prod environment with it.

Create

# Creates a dev workspace
$ terraform workspace new dev

# Creates a prod workspace
$ terraform workspace new prod

Switch

# Select the dev workspace
$ terraform workspace select dev

# Select the prod workspace
$ terraform workspace select prod

List

$ terraform workspace list

Show

$ terraform workspace show