Blog

Filtering by:
Day 30: How to Register for the Terraform Associate (004) Exam — and What to Expect on Test Day
Terraform
May 01, 2026 · 10 min read

Day 30: How to Register for the Terraform Associate (004) Exam — and What to Expect on Test Day

Day 28 was the first practice exam. Day 29 was exams 3 and 4 with the Exam-mode-first protocol. Day...

Read More
Day 29: Take the Exam First, Review Later: How to Actually Use Bryan Krausen's Practice Tests
Terraform
Apr 30, 2026 · 10 min read

Day 29: Take the Exam First, Review Later: How to Actually Use Bryan Krausen's Practice Tests

Day 28 was the first two practice exams and the study log that came out of them. Day 29 was exams 3...

Read More
Day 28: How I Prepared for the Terraform Associate Exam with Practice Exams
Terraform
Apr 29, 2026 · 8 min read

Day 28: How I Prepared for the Terraform Associate Exam with Practice Exams

Days 9 through 27 built infrastructure: modules, remote state, multi-region failover, the works. Day...

Read More
Day 27: Building a Multi-Region, Fault-Tolerant 3-Tier Infrastructure with AWS and Terraform
Terraform
Apr 28, 2026 · 10 min read

Day 27: Building a Multi-Region, Fault-Tolerant 3-Tier Infrastructure with AWS and Terraform

Day 26 stood up a single-region scalable web app: ALB → ASG → EC2, with CloudWatch closing the scali...

Read More
Day 26: Building a Scalable Web Application with Terraform, EC2, and Auto Scaling
Terraform
Apr 27, 2026 · 10 min read

Day 26: Building a Scalable Web Application with Terraform, EC2, and Auto Scaling

Day 25 deployed a static site on S3 + CloudFront. Day 26 moves up the stack to a dynamic web applica...

Read More
Day 25: Deploying a Static Website on AWS S3 with Terraform
Terraform
Apr 26, 2026 · 10 min read

Day 25: Deploying a Static Website on AWS S3 with Terraform

The certification prep of Days 23–24 is done. Day 25 is the first full hands-on project: a productio...

Read More
Day 24: Final Exam Preparation: Terraform Associate (004) Practice and Tips
Terraform
Apr 25, 2026 · 12 min read

Day 24: Final Exam Preparation: Terraform Associate (004) Practice and Tips

Day 23 built the reference cheat sheet. Day 24 is the simulation layer: exam-style practice question...

Read More
Day 23: Terraform Associate (004) Exam — Complete Cheat Sheet
Terraform
May 24, 2026 · 10 min read

Day 23: Terraform Associate (004) Exam — Complete Cheat Sheet

Day 23 shifts to certification prep. This post is a domain-by-domain reference covering every publis...

Read More
Day 22: Putting It All Together: Application and Infrastructure Workflows with Terraform
Terraform
Apr 23, 2026 · 10 min read

Day 22: Putting It All Together: Application and Infrastructure Workflows with Terraform

Day 20 covered the application code deployment workflow. Day 21 covered the infrastructure code depl...

Read More
Day 21: A Workflow for Deploying Infrastructure Code with Terraform
Terraform
Apr 22, 2026 · 10 min read

Day 21: A Workflow for Deploying Infrastructure Code with Terraform

Day 20 established the application code deployment workflow — Docker image, smoke tests, approval ga...

Read More
Day 20: A Workflow for Deploying Application Code with Terraform
Terraform
Apr 21, 2026 · 1 min read

Day 20: A Workflow for Deploying Application Code with Terraform

Day 19 connected the FastAPI stack to HCP Terraform and established how teams manage infrastructure....

Read More
Day 19: Adopting Infrastructure as Code in Your Team — and HCP Terraform
Terraform
Apr 20, 2026 · 9 min read

Day 19: Adopting Infrastructure as Code in Your Team — and HCP Terraform

Days 1–18 were one engineer, one AWS account, and a FastAPI app that grew from a single EC2 instance...

Read More
Day 18: Automated Testing of Terraform Infrastructure
Terraform
Apr 19, 2026 · 10 min read

Day 18: Automated Testing of Terraform Infrastructure

Day 17 established the manual testing workflow. Day 18 automates it: a full testing pyramid for the...

Read More
Day 17: Manual Testing of Terraform Infrastructure
Terraform
Apr 18, 2026 · 10 min read

Day 17: Manual Testing of Terraform Infrastructure

Day 16 added CI/CD and Terratest. Day 17 steps back: what is the manual testing workflow that Terrat...

Read More
Day 16: Creating Production-Grade Infrastructure with Terraform
Terraform
Apr 17, 2026 · 7 min read

Day 16: Creating Production-Grade Infrastructure with Terraform

Seven days of building the FastAPI stack. Today: measure it against the production-grade checklist,...

Read More
Day 15: Deploying the FastAPI App on EKS with Terraform — Multiple Providers in Practice
Terraform
Apr 16, 2026 · 12 min read

Day 15: Deploying the FastAPI App on EKS with Terraform — Multiple Providers in Practice

Day 14 deployed the same module to two regions using provider aliases. Day 15 goes further: two diff...

Read More
Day 14: Getting Started with Multiple Providers in Terraform
Terraform
Apr 15, 2026 · 7 min read

Day 14: Getting Started with Multiple Providers in Terraform

The FastAPI app is getting users in Europe. Latency from `us-east-1` is noticeable. Time to deploy a...

Read More
Day 13: How to Handle Sensitive Data Securely in Terraform
Terraform
Apr 14, 2026 · 8 min read

Day 13: How to Handle Sensitive Data Securely in Terraform

The FastAPI app needs a database. The first instinct is to put the password in a Terraform variable....

Read More
Day 12: Mastering Zero-Downtime Deployments with Terraform
Terraform
Apr 13, 2026 · 10 min read

Day 12: Mastering Zero-Downtime Deployments with Terraform

The FastAPI app from Day 9 is running in production. You have a new version to ship. What happens wh...

Read More
Day 11: Conditional Infrastructure: Making Your FastAPI Deployment Environment-Aware
Terraform
Apr 12, 2026 · 10 min read

Day 11: Conditional Infrastructure: Making Your FastAPI Deployment Environment-Aware

Day 10 introduced conditionals. Day 11 goes deeper — object types, data blocks, built-in functions,...

Read More
Day 10: Mastering Loops and Conditionals in Terraform
Terraform
Apr 11, 2026 · 5 min read

Day 10: Mastering Loops and Conditionals in Terraform

Dynamic blocks, and conditionals in Terraform — the four tools that turn rigid infrastructure config...

Read More
Day 9 - II : IDeploying a Real FastAPI App on AWS with Terraform Modules
Terraform
Apr 10, 2026 · 10 min read

Day 9 - II : IDeploying a Real FastAPI App on AWS with Terraform Modules

The module from Day 9 runs a toy Python HTTP server. Let's replace it with a real FastAPI backend —...

Read More
Day 9 - I : Advanced Terraform Modules: Versioning and Multi-Environment Deployment
Terraform
Apr 10, 2026 · 10 min read

Day 9 - I : Advanced Terraform Modules: Versioning and Multi-Environment Deployment

Day 8 got modules working. Day 9 is about making them safe to change — versioning a reusable web-app...

Read More
Day 8: Building Reusable Infrastructure with Terraform Modules
Terraform
Apr 09, 2026 · 10 min read

Day 8: Building Reusable Infrastructure with Terraform Modules

I've been writing the same ALB, ASG, and security group blocks since Day 4. Every time I set up a ne...

Read More
Day 7: Workspaces vs File Layouts: I Tried Both. Here's What I Think.
Terraform
Apr 08, 2026 · 12 min read

Day 7: Workspaces vs File Layouts: I Tried Both. Here's What I Think.

Today was fully hands-on — setting up isolated environments using both approaches, then comparing th...

Read More
Day 6: How to Securely Store and Manage Terraform State Files
Terraform
Apr 07, 2026 · 7 min read

Day 6: How to Securely Store and Manage Terraform State Files

Day 5 covered what state is and how to move it off your laptop into S3. Day 6 goes deeper — actually...

Read More
Day 5: Terraform State and Scaling Infrastructure
Terraform
Apr 06, 2026 · 8 min read

Day 5: Terraform State and Scaling Infrastructure

Today was a big shift. The first four days were mostly about getting things deployed — servers, load...

Read More
Day 4: Deploying a Highly Available Web App on AWS Using Terraform
Terraform
Apr 05, 2026 · 10 min read

Day 4: Deploying a Highly Available Web App on AWS Using Terraform

In this post, I'll walk through how I rebuilt it the right way using Terraform — variables, an Auto...

Read More
Day 3: Inside Terraform: How It Actually Works Under the Hood
Terraform
Apr 04, 2026 · 7 min read

Day 3: Inside Terraform: How It Actually Works Under the Hood

Most Terraform tutorials jump straight to writing `.tf` files and running `terraform apply`. But if...

Read More
Day 2: Step-by-Step Guide to Setting Up Terraform, AWS CLI, and Your AWS Environment
Terraform
Apr 03, 2026 · 5 min read

Day 2: Step-by-Step Guide to Setting Up Terraform, AWS CLI, and Your AWS Environment

Before you can start managing cloud infrastructure with Terraform, you need to get your local enviro...

Read More
Day 1: What is Infrastructure as Code (IaC) and Why It Matters
Terraform
Apr 02, 2026 · 4 min read

Day 1: What is Infrastructure as Code (IaC) and Why It Matters

If you've ever manually clicked through a cloud console to spin up servers, configure networking, or...

Read More
From Practice to Certification: My Terraform Certification Journey Begins
Terraform
Apr 01, 2026 · 4 min read

From Practice to Certification: My Terraform Certification Journey Begins

I've been working with Terraform for a while, and now it's time to make it official. This blog serie...

Read More
CI/CD for Static Sites: Deploy to AWS S3 + CloudFront with Docker, Terraform, and GitHub Actions
Cloud & AWS
Apr 07, 2026 · 15 min read

CI/CD for Static Sites: Deploy to AWS S3 + CloudFront with Docker, Terraform, and GitHub Actions

A step-by-step guide to automating static site deployments using Docker, Terraform, and GitHub Actio...

Read More
Docker for PHP Developers: From Zero to Production
DevOps
Mar 10, 2026 · 4 min read

Docker for PHP Developers: From Zero to Production

A hands-on guide to containerizing PHP applications with Docker — covering Dockerfiles, multi-stage...

Read More
Building a RESTful API with Laravel: A Complete Guide
Web Development
Mar 20, 2026 · 2 min read

Building a RESTful API with Laravel: A Complete Guide

A deep dive into building production-ready RESTful APIs with Laravel — covering project setup, resou...

Read More
Getting Started with AWS Lambda and PHP
Cloud & AWS
Mar 15, 2026 · 3 min read

Getting Started with AWS Lambda and PHP

Everything you need to know about running PHP on AWS Lambda with Bref — from local setup and serverl...

Read More

No Posts Found

No articles match your current filters. Try adjusting your search or removing filters.

Get In Touch

I'm always open to discussing new projects and opportunities.

Location Yassa/Douala, Cameroon
Availability Open for opportunities

Connect With Me

Send a Message

Have a project in mind? Let's talk about it.