Introduction
When you use Terraform to manage infrastructure, it organizes your work into workspaces. The default workspace is the first and main workspace where your infrastructure state is stored. It helps keep track of what resources Terraform manages.
When you start managing infrastructure with Terraform and have not created any additional workspaces.
When you want to keep your infrastructure state simple and do not need multiple environments like dev or prod.
When you want to run Terraform commands without specifying a workspace explicitly.
When you want to test Terraform configurations quickly without workspace switching.
When you want to understand how Terraform stores state by default.