Day 13 of AWS + TerraformTerraform Data Sources — Using Existing Infrastructure In the previous days, we created infrastructure using Terraform resources.Today, I learned an equally important concept — Terraform Data Sources. Data sources allow us to read and use existing in...Dec 28, 2025·3 min read
Day 7 of AWS + TerraformUnderstanding Terraform Type Constraints In the last blog, we organized our Terraform files into a clean structure.Today, we dive into Terraform Type Constraints — one of the most important parts of writing clean, predictable, and safe Terraform conf...Dec 3, 2025·4 min read
Day 6 of AWS + TerraformTerraform File Structure In Day 5 we used variables and wrote everything inside a single main.tf.That works when the setup is small — but as soon as the infrastructure grows, the code becomes messy and difficult to manage. So today I learned how to p...Dec 1, 2025·2 min read
Day 5 of AWS + TerraformUnderstanding Variables — Input, Local & Output Today is Day 5 of my AWS + Terraform learning series.Until now we created AWS resources and configured a remote backend.In this blog, we move to an important concept — Terraform Variables. Variables mak...Nov 30, 2025·3 min read
Day 4 of AWS + TerraformUnderstanding Terraform State & Remote Backend (S3 Locking) In the last blog, we created an S3 bucket using Terraform.When we applied our configuration, Terraform generated a file called terraform.tfstate.This file is extremely important because it c...Nov 30, 2025·3 min read
Day 3 of AWS + TerraformCreating Your First AWS Resource — S3 Bucket In the previous blog, we learned about Terraform Providers, version constraints and wrote our first configuration.Today, we are moving one step ahead — creating our first AWS resource using Terraform, and ...Nov 30, 2025·2 min read
Day 2 of AWS + TerraformIntroduction This is Day 2 of our Terraform learning series.Today we will study how Terraform communicates with cloud providers like AWS to create infrastructure.The main concepts are: What are Terraform Providers Provider version vs Terraform Core...Nov 30, 2025·3 min read