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

推荐订阅源

Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
P
Proofpoint News Feed
博客园 - 【当耐特】
MongoDB | Blog
MongoDB | Blog
L
LangChain Blog
F
Fortinet All Blogs
C
Check Point Blog
博客园_首页
I
InfoQ
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
酷 壳 – CoolShell
酷 壳 – CoolShell
Engineering at Meta
Engineering at Meta
美团技术团队
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research

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
Terraform Modules: Composition Over Abstraction
Bartłomiej D · 2026-04-27 · via DEV Community

Bartłomiej Danek

Terraform Modules: Composition Over Abstraction

Terraform makes it easy to build large, highly abstracted modules that try to solve everything in one place. At first glance, this feels efficient: fewer modules, fewer calls, less wiring.

In practice, that approach often creates more problems than it solves.

A better pattern-especially as infrastructure grows-is to design small, focused, “atomic” modules and combine them using composition.


What We Mean by Composition

In this context, composition means:

Building infrastructure by combining smaller, independent modules instead of hiding everything behind a single, all-in-one module.

Instead of:

  • one module doing everything internally

you have:

  • multiple modules wired together explicitly
module "role" { ... }

module "policy" { ... }

module "attachment" {
  role   = module.role.name
  policy = module.policy.arn
}

Enter fullscreen mode Exit fullscreen mode

This is not just a stylistic choice-it directly impacts maintainability, safety, and clarity.


The Problem with “Do-It-All” Modules

A common anti-pattern is a module that:

  • creates multiple IAM roles
  • generates multiple policies
  • attaches them
  • conditionally enables features via flags
  • supports multiple unrelated use cases

Example:

module "irsa" {
  source = "./modules/irsa"

  roles = {
    service_a = {
      policies = ["s3", "dynamodb"]
    }
    service_b = {
      policies = ["sqs"]
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

This looks convenient, but introduces several issues.


Hidden Coupling

All resources share one lifecycle.

A small change:

  • can affect unrelated roles
  • may trigger unnecessary diffs
  • increases risk during apply

Poor Reusability

“Generic” modules often become:

  • too opinionated for some use cases
  • too complex for others

Consumers either:

  • fight the interface
  • or reimplement logic elsewhere

Hard-to-Review Changes

A simple modification may:

  • touch multiple resources
  • impact different logical paths

This makes it difficult to answer:

What will this change actually do?


Large Blast Radius

Terraform operates at the module/state level.

Large modules lead to:

  • bigger plans
  • slower applies
  • harder rollbacks
  • increased risk

Atomic Modules: A Better Approach

“Atomic” does not mean artificially small.

It means:

A module should represent a single logical responsibility.

Examples:

  • iam-role
  • iam-policy
  • iam-role-policy-attachment

Each module:

  • has a clear purpose
  • exposes a minimal interface
  • can be reused independently

Example: IRSA - Monolith vs Composition

Monolithic Approach

module "irsa" {
  source = "./modules/irsa"

  roles = {
    service_a = {
      policies = ["s3", "dynamodb"]
    }
  }
}

Enter fullscreen mode Exit fullscreen mode

Problems:

  • tightly coupled lifecycle
  • unclear ownership
  • difficult to modify safely

Composed Approach

Create role

module "service_a_role" {
  source = "./modules/iam-role"

  name = "service-a"
  assume_role_policy = data.aws_iam_policy_document.irsa.json
}

Enter fullscreen mode Exit fullscreen mode

Create policy

module "service_a_s3_policy" {
  source = "./modules/iam-policy"

  name   = "service-a-s3"
  policy = data.aws_iam_policy_document.s3.json
}

Enter fullscreen mode Exit fullscreen mode

Attach policy

module "service_a_attach_s3" {
  source = "./modules/iam-role-policy-attachment"

  role_name  = module.service_a_role.name
  policy_arn = module.service_a_s3_policy.arn
}

Enter fullscreen mode Exit fullscreen mode


Why Composition Works Better

Clear Ownership

Each resource:

  • is defined explicitly
  • belongs to a specific consumer

Safer Changes

Updating a policy:

  • affects only that policy
  • does not impact unrelated roles

Better Reusability

You can:

  • reuse policies across roles
  • attach policies flexibly
  • compose behavior without modifying modules

Easier Debugging

Failures are easier to trace because:

  • modules are small
  • responsibilities are clear

Composition vs Abstraction

These are often confused.

Approach Focus Trade-off
Abstraction Simplicity of usage Hidden complexity, rigidity
Composition Flexibility, clarity More explicit wiring

Monolithic modules favor abstraction.

Atomic modules favor composition.


Trade-offs of Composition

This approach is not free.

More Module Calls

You will write more blocks.

This increases verbosity, but also improves clarity.


More Explicit Wiring

You pass outputs between modules.

This is intentional:

  • dependencies are visible
  • behavior is predictable

Risk of Over-Fragmentation

Splitting everything blindly leads to:

  • unnecessary complexity
  • modules that are never used independently

Example of going too far:

  • separating tightly coupled resources that must always exist together

Practical Rule of Thumb

If a resource can be safely changed, reused, or destroyed independently, it should likely be its own module.

If not, keep it together.


When Larger Modules Still Make Sense

There are valid cases for bigger modules:

  • tightly coupled infrastructure (e.g., VPC with subnets and routing)
  • opinionated platform layers
  • internal “productized” infrastructure

Even then:

  • avoid “god modules”
  • keep boundaries clear
  • prefer internal composition

Key Insight

The real shift is this:

Move complexity from inside modules to between modules.

  • Monolith → implicit complexity
  • Composition → explicit complexity

In infrastructure systems, explicit complexity is easier to manage over time.


Summary

  • Prefer composition over monolithic abstraction
  • Design modules with single responsibilities
  • Keep dependencies explicit and visible
  • Accept some verbosity in exchange for safety and clarity

The goal is not smaller modules.

The goal is predictable, composable, and low-risk infrastructure.


Originally published at https://bard.sh/posts/terraform-modules-composition-over-abstraction/