Understanding how workspaces work in terraform, and how to isolate dev, test, stage and prod environment with it.
# Creates a dev workspace
$ terraform workspace new dev
# Creates a prod workspace
$ terraform workspace new prod# Select the dev workspace
$ terraform workspace select dev
# Select the prod workspace
$ terraform workspace select prod$ terraform workspace list$ terraform workspace show