惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
博客园 - 司徒正美
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
D
DataBreaches.Net
B
Blog RSS Feed
博客园_首页
The GitHub Blog
The GitHub Blog
I
InfoQ
L
LangChain Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
美团技术团队
腾讯CDC
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Infrastructure as Code: Platform Choices for Enterprise T...
Wolyra · 2026-05-01 · via DEV Community

Three years ago, the Infrastructure as Code conversation was effectively settled. You used Terraform. You argued about modules and remote state and occasionally workspaces, but the tool was the default and everyone moved on to more interesting problems.

That consensus is gone. HashiCorp’s license change and subsequent acquisition by IBM cracked the foundation. OpenTofu forked. Pulumi has gained real traction in engineering-heavy organizations. Crossplane offers a different philosophy entirely. And platform teams are now making a choice they had not seriously considered for nearly a decade.

This piece lays out the landscape as it stands in 2026, and offers a decision framework based on team skills, existing estate, and what actually breaks when the tool is put under real scale.

The landscape, briefly

Terraform (HashiCorp, now IBM)

Still the largest installed base. License is now Business Source License, which restricts competitive hosting but does not affect the overwhelming majority of users. The module ecosystem remains the richest of any IaC tool. Development velocity has slowed somewhat since the acquisition, though the core product is stable and well-supported.

OpenTofu (Linux Foundation fork)

Fork of Terraform 1.5, governed by the Linux Foundation. MPL-2.0 license. Drop-in compatible with Terraform for the majority of real-world configurations. Active community, increasing corporate contributions, and a roadmap that has begun to diverge slightly from Terraform in ways that favor state management and policy features. The migration path from Terraform is effectively a command rename for most estates.

Pulumi

Infrastructure as code in general-purpose programming languages — TypeScript, Python, Go, C#. Not a domain-specific language. You get loops, conditionals, functions, unit tests, and your IDE’s full tooling. The cost is that you have to treat infrastructure code like any other code, which some organizations view as a feature and others as a risk.

Crossplane

Kubernetes-native infrastructure provisioning. You define infrastructure as Kubernetes custom resources and a controller reconciles the desired state. Philosophically closer to GitOps than to traditional IaC. Excellent when Kubernetes is already your control plane. Awkward when it is not.

The decision axes that actually matter

Most comparison articles rank these tools on feature matrices. We find feature matrices misleading because the features that matter depend heavily on who is using the tool and what they have already built. The four axes below tend to resolve the question in practice.

Team fluency

A team of platform engineers who have written Terraform modules for five years will be dramatically more productive in OpenTofu than in Pulumi, even if Pulumi is the objectively more capable tool. A team of software engineers assigned to own infrastructure for the first time will usually be more productive in Pulumi, because it speaks a language they already know. The tool that wins is the one your team can ship with on day one.

Existing estate and module ecosystem

If you already have thousands of lines of Terraform modules in production, migrating to Pulumi is a project. It is a doable project, but a project. Migrating to OpenTofu is not a project — it is a command substitution. If you are greenfield, the ecosystem differences matter less. If you are brownfield, they usually dictate the answer.

State management at scale

All three of Terraform, OpenTofu, and Pulumi use a state file. At single-team scale this is fine. At five-hundred-engineer scale it becomes the single most important operational concern. State file locking, splitting, drift detection, and recovery from partial-apply failures are the differences between an IaC program that works and one that requires a dedicated on-call rotation. Crossplane sidesteps this by making Kubernetes the state authority, which is either elegant or a different set of problems depending on your Kubernetes maturity.

Policy-as-code integration

Mature infrastructure programs run policy checks against IaC before apply. Sentinel, OPA, Checkov, and similar tools integrate differently across these platforms. Terraform and OpenTofu have the richest policy tooling. Pulumi’s policy-as-code is capable but a smaller ecosystem. Crossplane inherits Kubernetes admission controllers, which is a powerful model if you have invested in it.

What actually breaks at scale

The failure modes differ by tool, and the list below reflects what we have seen break in real production environments as team size crossed the hundred-engineer mark.

  • Terraform and OpenTofu: state file fragmentation, module versioning coordination, provider upgrade coordination, and the occasional corrupt state recovery. The community tooling for these problems is mature, but the problems are inherent to the model.
  • Pulumi: the flexibility that comes with general-purpose languages becomes the liability. Teams build abstractions that other teams cannot read. “Infrastructure code as regular code” means regular-code problems — bad abstractions, over-engineered inheritance hierarchies, and the occasional circular dependency.
  • Crossplane: if Kubernetes has problems, Crossplane has problems. Control plane performance, CRD proliferation, and reconciliation storms all show up under load. The compensation is that the problems have Kubernetes-shaped solutions.

A practical recommendation

For most organizations making a fresh decision in 2026, the answer is one of three:

OpenTofu for greenfield or migration. If you are starting new, or if you are on Terraform and considering your next move, OpenTofu is the default. The ecosystem is the same, the license is permissive, and the governance model removes the commercial risk. The community has momentum.

Pulumi for software-engineering-first teams. If your infrastructure is being managed by product engineers rather than a dedicated platform team, and those engineers think in code rather than in configuration, Pulumi will produce better results faster. The risk is governance — make sure you have someone whose job is to prevent infrastructure code from turning into an unbounded Python project.

Crossplane only if Kubernetes is the control plane. If your platform is Kubernetes-first, if your developers already deploy applications via GitOps, and if the idea of infrastructure-as-custom-resource aligns with how you already think, Crossplane is excellent. If you are adopting Kubernetes specifically so you can use Crossplane, reconsider. That is solving one problem by creating three.

What to stop arguing about

Two things we see teams argue about that rarely affect the outcome.

First, performance. All four tools are fast enough for the vast majority of estates. If your plan-and-apply cycle is slow, the cause is almost always state file size or provider API throttling, not the tool itself. Changing tools will not fix this.

Second, DSL purity. The argument about whether HCL is a “real” language or whether general-purpose languages are “too dangerous” for infrastructure is a distraction. Both models work. What fails is underspecified ownership and weak review practices. Neither of those is a tool choice.

The tool is the smallest part of a functioning IaC program. Pick one your team can ship with, invest in the operating practices around it, and revisit the choice only when you hit a concrete scaling wall. Most organizations never do.