DevOps

Upgrading the Terraform AWS Provider: Painful, But Worth It

Introduction If you're using Terraform for IAAC with AWS, you might have probably declared the provider like this in your code: provider "aws" {  region = "us-west-2" } [caption id="attachment_73692" align="aligncenter" width="625"] terraform + aws[/caption] And it worked. So you left it alone. Then one day, someone tries to use...

by Karandeep Singh
Tag: terraformbestpractices
20-Aug-2025

DevOps

Mastering Terraform State: Real Incidents, Lessons, and Best Practices

Introduction: What is Terraform State? Terraform doesn’t just apply your infrastructure code and forget about it. It keeps track of what’s been created — every EC2 instance, every S3 bucket, every RDS database, every security group, and many more. That data is stored in a file called terraform.tfstate. This state file is how...

by Karandeep Singh
Tag: terraformbestpractices
08-Aug-2025