Production-Grade Terraform (Part 7) —Terraform Input Variables Precedence in TerraformSep 4, 2026·9 min read
Production-Grade Terraform (Part 6) — Mastering Block Types & Hands-on EC2 ProvisioningAug 31, 2026·7 min read·12
Production-Grade Terraform (Part 8) —Terraform Variable Type ConstraintsTerraform Variables Terraform variables are generally classified by their purpose or the value they contain. While purpose-based variables include input, output, and local variables, value-based variaSep 7, 2026·6 min read
Production-Grade Terraform (Part 5) —Terraform State Management and AWS S3 Remote Backend GuideAug 27, 2026·14 min read·4
Production-Grade Terraform (Part 4) —Solving "Checksum Verification Failed" &Terraform Dependency Lock FileAug 25, 2026·8 min read·5
Production-Grade Terraform (Part 3) — Terraform AWS Provider: An In-Depth AnalysisI. The Core Function of Terraform Providers A Terraform provider is a plugin that serves as the bridge between Terraform's core binary and a target API. Its primary responsibility is to interpret the Aug 24, 2026·7 min read·11
Production-Grade Terraform (Part 2) — Terraform Installation and Configuring AWS CLITerraform Installation and Configuring AWS CLI This guide provides step-by-step instructions for setting up your local development environment for infrastructure management using Terraform and AWS. 1.Aug 22, 2026·2 min read·10
Production-Grade Terraform (Part 1) — Core Concepts & IaC Fundamentals1 .Introduction to IaC Definition: Managing and provisioning computing infrastructure (e.g., networks, virtual machines, load balancers) using configuration files typically stored in version control. Aug 21, 2026·5 min read·7
Process Management in LinuxA process is defined as a running instance of a program, such as a Python application, a shell script, or a web server. Because software cannot interact directly with hardware, the operating system (OMay 6, 2026·13 min read·10
AWS EC2 Storage: Are you Resizing or Adding?A common point of confusion for DevOps engineers is deciding which commands to use when an EC2 instance runs out of space. Does one use resize2fs or mkfs? The answer depends on your goal. Key takeawaMay 5, 2026·4 min read·15
Docker CMD vs ENTRYPOINT: Understanding Their Differences1. Containers vs. Virtual Machines (VMs): Key Idea: Containers are fundamentally different from VMs. VMs are designed to host an operating system, Containers do not include a full guest OS; they include only user-space dependencies while sharing the...Jan 20, 2026·5 min read·16