Archives for Production Terraform
Workspaces in TerraforM
workspaces allow you to manage multiple environments or configurations within a single Terraform configuration directory. Each workspace maintains its own state file, enabling you to isolate environments such as development,…
Manual Drift and terraform
Also read - Preventing accidental deletion of resources Prevent_Destroy in Terraform Terraform has a few options for detecting and managing drift of resources. lifecycle { prevent_destroy = true } However,…
Multi User Edits and Terraform State file
What if you have users are working on the same terraform project (they don't need to work directly on the state file)? How does the state file know which changes…
Production Terraform
Single NON PROD Environment or MULTIPLE, SEPARATE ( DEV TEST STAGING ) Environments? Also read Multi developer Terraform and Reusable Modules in TerraformĀ One of the common questions that arises…