LW.

Glorified Notepad

Creating Your First Terraform Module for Azure

Why Use a Terraform Module? If you’ve ever copied and pasted the same Terraform resources into more than one project, you’ll know how quickly things can get messy. Modules are your way out of that mess. A module is basically a reusable bundle of Terraform config, like a function in code. You pass in some variables, and it gives you a consistent result every time. No more copy-paste chaos. Here’s what makes modules worth it: Keeps your naming and tagging tidy Saves you from repeating yourself Helps you work faster without breaking stuff If you’re working in a team, this becomes even more useful. Continue reading

Still Running Terraform Locally? Let's Talk.

There’s a good chance you’re deploying your Azure infrastructure from your own machine. Maybe it’s Terraform. Maybe it’s working… most of the time. But here’s the question I’d pose: Are you still running terraform apply locally, or have you moved your infrastructure into a pipeline? And more importantly, why? Because while running Terraform locally might feel fast and flexible, it can quietly introduce a whole stack of problems that don’t show up until you start scaling. Continue reading

The End of AzureAD and MSOnline PowerShell: Time to Move On

If you’re still scripting against AzureAD or MSOnline, you have just 4 days left. Microsoft has officially confirmed the retirement schedule: MSOnline is retiring on 30th March 2025 AzureAD follows on 30th June 2025 This isn’t just a date on the calendar. If you’ve been relying on either module, you already know the shift to Microsoft Graph PowerShell isn’t just a syntax change,it’s a complete rework of how identity automation is done. Continue reading

A Smarter Way to Manage Azure Firewall Policy Changes

I prefer to manage infrastructure through Infrastructure as Code (IaC), particularly with Terraform, because it provides consistency, scalability, and automation. However, I understand that not every organisation has the skills, resources, or appetite to adopt IaC. Some teams rely on the Azure Portal and need ways to make governance changes efficiently without introducing unnecessary risk. Draft + Deployment (Preview) is designed for those scenarios. But if you’ve ever tried making changes in the portal, you know how tedious it can be. Continue reading

Mastering the Basics: Terraform and Infrastructure as Code in Azure

Introduction Managing cloud infrastructure manually is slow, error-prone, and impossible to scale. Infrastructure as Code (IaC) solves these problems by allowing infrastructure to be defined, deployed, and maintained with code. Terraform has become the go-to IaC tool because of its declarative approach, multi-cloud support, and ability to track infrastructure changes over time. This article will walk through the fundamentals of Terraform, covering why manual provisioning causes problems, how Terraform improves cloud management, and key best practices to ensure scalable and secure deployments. Continue reading
Older posts Newer posts