Terraform Workspace
In Terraform, workspaces allow you to manage multiple instances of the same infrastructure within a single configuration. They are often used when you want to separate environments, such as development, staging, and production, without maintaining separate configurations for each.
Benefits :-
Using the same infrastructure within a single Terraform configuration but managing multiple environments with workspaces has several benefits :-
Reduced Code Duplication : You maintain a single set of configuration files, which eliminates the need to copy and modify the same code for each environment.
Environment-Specific Isolation : Actions in one workspace don’t affect the state or resources in another. This setup helps prevent accidental changes to critical environments, reducing the risk of outages or misconfigurations
Easier Environment Management : Switching between environments becomes as simple as selecting a workspace example
terraform workspace select production
).Consistent and Reusable Configurations : Using conditionals based on the workspace like:
terraform.workspace == "production"
allows you to customize resources like instance count or scaling limits per environment while keeping the core infrastructure setup consistent.Simplified Collaboration : Teams working on the same infrastructure can use workspaces to avoid stepping on each other’s configurations, as each workspace holds separate state data
Cost Efficiency : By having isolated environments, you can maintain only the resources you need for each stage (like fewer instances in
development
) without creating a new infrastructure configuration.Easier Scaling of New Environments : If you need to add a new environment (e.g.,
testing
orpre-production
), creating a new workspace is simpler and faster than duplicating configuration files.
Here's an overview of how to use Terraform workspaces :
Create a Workspace :
# This command initializes a new workspace
terraform workspace new <workspace_name>
List Workspaces :
terraform workspace list
Select a Workspace :
terraform workspace select <workspace_name>
Delete a Workspace :
You can delete a workspace (other than default
) using:
terraform workspace delete <workspace_name>
Using workspaces is especially beneficial in setups with relatively simple, similar environments. However, for significantly different infrastructure requirements per environment, separate configurations or modules may be more appropriate.
Subscribe to my newsletter
Read articles from saurabh dave directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by