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.
Let’s break it down.
The Local Workflow Trap
I get it running Terraform locally feels simple:
But what starts as flexibility becomes fragility. Here’s why:
What’s worse? It doesn’t scale. As soon as multiple engineers are working on the same infra, someone breaks something or someone else spends their Friday fixing it.
Pipelines: Not Just for App Code
It’s 2025. We have version control, CI/CD, and policy-as-code. There’s no reason infrastructure should lag behind.
Moving your Terraform into a build and release pipeline, like Azure DevOps, isn’t about process for process’s sake. It’s about building reliable, repeatable, safe infrastructure delivery.
Here’s how that actually plays out in real life.
Terraform Modules = Infrastructure at Scale
If you’re not using Terraform modules, you’re missing out.
Modules let you:
Once you’ve built your golden modules, you can plug them into pipelines and lock them down with versioning. That means:
Recommended by LinkedIn
It also opens the door to a platform model, where teams consume infrastructure as a product, not a loose pile of scripts.
Approval Gates = Safer Deployments
When you run Terraform through Azure DevOps, you can introduce real controls without slowing anyone down:
This isn’t about bureaucracy, it’s about structured freedom. Developers move fast, but with the right safety nets in place.
Feedback Loops = Shift-Left Confidence
Here’s where it gets powerful.
You can plug feedback directly into your PRs and pipelines:
This kind of real-time feedback means developers get actionable info while they’re coding, not after the fact.
It builds trust in the process. And it helps platform teams sleep better.
Where to Start
You don’t have to overhaul everything overnight. Here's what I'd recommend:
Let’s Make This Practical
So, where are you running Terraform today? Are you still going local, or have you made the leap to pipelines?
What’s worked well for your team? What’s slowed you down?
Drop your experience in the comments. Would love to hear how others are approaching it, especially in Azure-heavy environments.
Want a follow-up piece on how to structure Terraform repos and pipelines in Azure DevOps? Let me know, happy to break that down next.
Solution Architect | Software Architect | Microsoft Azure | Solution Design | .NET | C# | Collaboration | Leadership | Mentorship | Technology focused
3wElliott Leighton-Woodruff thanks for the great insight. As a non Terraform user, for small businesses where team sizes are very small and Azure Administration is as thin as a cheap loo roll, IAC is a luxury that becomes a burden and hence many (I'm assuming) simply do it by hand, either through scripts or directly via the Azure portal. Yes, these are seemingly tedious methods, the manual ones, but in reality, the option of having the skillset to create IaC and deploy via DevOps pipelines that follow an SDLC workflow etc etc is understandably daunting. Just my view on it based on experience. 👍