DEV Community

Mary Mutua
Mary Mutua

Posted on

Ready for Terraform Certification: My Final Exam Prep and 30-Day Reflection

Day 30 of my 30-Day Terraform Challenge is complete.

This was the final day of the challenge, and the focus was clear: consolidate, assess readiness, and reflect on the full journey.

There was no new infrastructure to deploy today. No new AWS service to debug. No new Terraform module to refactor.

Today was about proving readiness.

After 29 days of building, testing, documenting, troubleshooting, and preparing, I used Day 30 to complete one final simulated exam, test command recall with fill-in-the-blank questions, and assess whether I am ready for the Terraform Associate certification.

GitHub reference:

https://github.com/mary20205090/30-day-Terraform-Challenge/tree/main/day_30

Final Practice Exam

I completed Practice Exam 5 as my final simulated exam.

Result:

57 / 57
100%
Time taken: 45 minutes
Enter fullscreen mode Exit fullscreen mode

This was the strongest possible way to end the practice exam phase.

More importantly, it confirmed that the consistency I saw on Days 28 and 29 was real. My earlier practice exams had already shown strong scores, but this final exam gave me confidence that the core concepts were sticking under timed conditions.

Across the final five practice exams, my trend looked like this:

Exam Score Accuracy Time
Practice Exam 1 54 / 57 94.7% 55 min
Practice Exam 2 56 / 57 98.2% 50 min
Practice Exam 3 56 / 57 98.2% 40 min
Practice Exam 4 56 / 57 98.2% 45 min
Practice Exam 5 57 / 57 100% 45 min

The trend matters more than any single score.

It showed steady performance, comfortable timing, and fewer weak spots by the final day.

Fill-in-the-Blank Review

After the final practice exam, I completed a 20-question fill-in-the-blank review.

Result:

19 / 20
95%
Enter fullscreen mode Exit fullscreen mode

This was useful because fill-in-the-blank questions test recall differently from multiple choice.

With multiple choice, you can sometimes recognize the correct answer. With fill-in-the-blank questions, you have to retrieve it from memory.

The one question I missed was about the S3 backend encryption argument.

I answered:

server_side_encryption_configuration
Enter fullscreen mode Exit fullscreen mode

The correct backend argument is:

encrypt = true
Enter fullscreen mode Exit fullscreen mode

That was a good final reminder: Terraform exam prep is often about precision. server_side_encryption_configuration is related to configuring encryption on an actual S3 bucket resource. The S3 backend uses encrypt.

Small distinction. Important distinction.

Final Readiness Assessment

My final readiness rating is:

Ready
Enter fullscreen mode Exit fullscreen mode

The evidence is clear:

  • Practice Exam 5: 100%
  • Fill-in-the-blank review: 95%
  • Strong score trend across five practice exams
  • Comfortable timing within the exam window
  • Remaining weak areas are narrow and specific
  • Core Terraform workflow, modules, state, providers, lifecycle rules, and HCP Terraform concepts are solid

The only final topics I want to lightly review before the real exam are:

  • S3 backend encryption: encrypt = true
  • saved plan staleness
  • variable precedence
  • state command distinctions
  • provider alias usage

At this point, I do not need to learn brand-new material.

I need to stay calm, review lightly, and trust the work.

What Changed Over These 30 Days

This challenge changed how I think about infrastructure.

At the beginning, Terraform was mostly a tool for provisioning cloud resources.

Now I see it differently.

Terraform is not just about creating infrastructure. It is about managing change safely.

That means:

  • writing infrastructure as code
  • storing and protecting state
  • designing reusable modules
  • isolating environments
  • reviewing plans before applying
  • testing infrastructure code
  • thinking about blast radius
  • documenting decisions
  • cleaning up resources responsibly
  • understanding how teams collaborate around infrastructure

The biggest shift was moving from “Can I make this work?” to “Can I make this safe, repeatable, and understandable?”

That is a very different mindset.

What I Built During the Challenge

Across the 30 days, I worked through a wide range of Terraform and AWS concepts.

Some of the major areas included:

  • EC2 instances and security groups
  • Application Load Balancers
  • Auto Scaling Groups
  • launch templates
  • remote state with S3 and DynamoDB
  • Terraform workspaces and environment isolation
  • reusable modules
  • loops and conditionals
  • zero-downtime deployment patterns
  • secrets management concepts
  • multiple providers and provider aliases
  • Docker and Kubernetes provider usage
  • production-grade module design
  • manual and automated testing
  • Terratest and native terraform test
  • CI/CD workflow concepts
  • Sentinel and policy-as-code concepts
  • static website hosting with S3
  • scalable web application architecture
  • multi-region high availability architecture
  • Terraform Associate exam preparation

That list is long, but the real value was not the number of topics.

The value was seeing how the topics connect.

State affects collaboration. Modules affect maintainability. Testing affects confidence. Provider aliases affect multi-region design. Plans affect safety. Documentation affects whether someone else can understand what was built.

That is what made the challenge feel real.

What I Am Most Proud Of

The part I am most proud of is pushing through the harder practical labs.

Remote state, reusable modules, automated testing, and the multi-region high-availability architecture were not simple checklist items. They required debugging, rethinking, and patience.

The multi-region architecture especially stood out because it brought many earlier lessons together:

  • provider aliases
  • region-specific module wiring
  • networking
  • load balancing
  • Auto Scaling
  • RDS
  • Route 53 concepts
  • cleanup and cost awareness

It felt like the kind of work that moves Terraform from tutorial knowledge into real engineering practice.

What This Challenge Taught Me

The biggest lesson is that Terraform is not just syntax.

Syntax matters, but the deeper skill is judgment.

Terraform asks you to think about:

  • what should be managed
  • where state should live
  • how teams should make changes
  • how to reduce risk
  • how to recover from mistakes
  • when to modularize
  • when not to overcomplicate
  • how to prove infrastructure works

That is why hands-on practice matters so much.

Reading about Terraform is useful, but building with it every day exposes the real lessons: backend bootstrapping, state locking, provider behavior, naming limits, account restrictions, cleanup order, and the difference between a clean plan and a safe deployment.

What Comes Next

Next, I will take the Terraform Associate certification exam.

After that, the goal is to keep applying these skills in real projects.

I want to continue building infrastructure that is:

  • reusable
  • documented
  • tested
  • secure
  • cost-aware
  • team-friendly

This challenge gave me a strong foundation, but the real value comes from continuing to use it.

Final Takeaway

Day 30 confirmed that I am ready for the Terraform Associate exam.

But more than that, it marked the end of a challenge that changed how I think about infrastructure.

I started by learning Terraform.

I finished by understanding infrastructure delivery more deeply: how to build, review, test, document, and operate infrastructure in a professional way.

The certification is the next milestone.

The real achievement is the confidence and discipline built over 30 days.

Follow My Journey

This is Day 30 of my 30-Day Terraform Challenge.

The challenge is complete.

Now it is time to go pass the certification.

Top comments (0)