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

推荐订阅源

博客园 - 【当耐特】
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
量子位
爱范儿
爱范儿
L
LangChain Blog
Vercel News
Vercel News
A
About on SuperTechFans
腾讯CDC
博客园_首页
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
博客园 - 聂微东
Stack Overflow Blog
Stack Overflow Blog
H
Help Net Security
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
V
Visual Studio Blog
美团技术团队
D
DataBreaches.Net
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium

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
Why AI Loves Ansible (And You Should Let It Help)
James Joyner · 2026-06-25 · via DEV Community

If you compare how well Claude handles Ansible against how well it handles, say, raw bash or kubectl YAML, Ansible wins by a wide margin. The reason isn't subtle: Ansible's shape — declarative, idempotent, modules-with-arguments — happens to map almost perfectly to how LLMs reason. They're good at producing structured output that fills in a known template, and that's what most Ansible tasks are.

This means AI-assisted Ansible work is the highest-leverage automation pairing I know of. If you only adopt AI for one infrastructure tool, make it Ansible.

What makes Ansible AI-friendly

Modules have published contracts

Every Ansible module has a documented argument spec: what's required, what's optional, what the defaults are. The model can fit your intent into the spec with high accuracy because the spec is finite and known.

Compare this to shell: there are a thousand ways to "create a user with a specific UID, member of these groups, with this shell, and a home directory in this location." In bash, every distro is slightly different. In Ansible, you use ansible.builtin.user with named arguments.

The model gets this right every single time.

Idempotency is the default

When a model generates a Python script, it has to think about "what if this is run twice." When it generates Ansible, most modules handle that for free. The model can write the task, ignore the re-run case, and produce something that works.

This means the cognitive load on both sides — model and human — is lower. You're describing the target state, not the procedure.

Roles and structure are predictable

roles/foo/{defaults,vars,tasks,handlers,templates,files,meta}/main.yml — every Ansible role looks the same. The model can scaffold a new role in seconds because the layout is fixed.

If you ask Claude to "create a new role for installing PostgreSQL 16 on Ubuntu 24.04 with default user postgres and a tuned postgresql.conf," you'll get a complete role structure with defaults/main.yml, tasks/main.yml, a Jinja template, and handlers/main.yml — all consistent, all in the right places. The structure is constrained enough that the model rarely improvises.

Use cases where AI shines for Ansible

Generating new roles from scratch

This is the killer app. You can describe a role in two sentences and get a 90%-done implementation. You then refine: add validation, adjust defaults, write a README.

I now treat "draft a new role with Claude" as the default first step. Even if I rewrite half of it, the structure saves me 20 minutes.

Converting shell scripts to playbooks

If you have a legacy bash script that provisions a server, pasting it into Claude with "convert this to an idempotent Ansible playbook using the appropriate modules" produces a usable result. The model knows when to use ansible.builtin.file, lineinfile, template, service, etc.

You'll need to verify the idempotency manually (run twice, expect 0 changes on the second run), but the conversion is mostly mechanical.

Refactoring playbooks to use FQCN

Ansible 2.10+ wants fully-qualified collection names: ansible.builtin.package instead of package. Old playbooks have hundreds of short-form references. AI is a perfect fit for this kind of mass refactoring — it knows the mapping and won't get bored.

Paste a 200-line playbook, ask for it back with FQCN throughout, and you're done in 30 seconds. Verify with ansible-lint.

Writing Molecule tests

Molecule scaffolding is repetitive — same molecule.yml, same converge.yml, same verify.yml structure for most roles. AI is great at generating the boilerplate. You describe what you want to test; the model writes the assertion playbook.

Jinja template generation

Jinja is just structured-enough that AI handles it well — generating templates for config files (nginx, postgres, sshd) from a description of the desired behavior. The model knows the configuration keys and the conditional structure.

Where AI struggles with Ansible

Variable precedence

Ansible's 21-layer variable precedence rules are not intuitive. The model will sometimes suggest putting a variable in vars/main.yml when you really want it in defaults/main.yml (the former overrides the latter). The result: users of your role can't override the variable they expected to.

Check: When the model puts something in vars/, ask "should this be overridable by the role user?" If yes, move to defaults/.

Custom facts and set_fact lifetime

The model sometimes uses set_fact for values that need to persist across plays, but doesn't add cacheable: true. The fact is then gone after the play ends, and the next play sees undefined.

Check: When you use set_fact for a value you need later, verify the lifetime is what you expect.

Vault integration

The model will sometimes generate playbooks that reference vault_db_password as a variable but don't include the lookup('community.hashi_vault.hashi_vault', ...) call or the Ansible Vault encrypted file. You have to wire up the secret source separately.

Check: For any sensitive variable in a generated playbook, verify there's an actual source for it (Vault encrypted file, external manager lookup, environment variable).

Distro-specific paths

The model defaults to Debian/Ubuntu conventions. If you run on RHEL, you'll sometimes get apt modules in tasks that should be using the package module (or distro conditionals).

Check: When generating playbooks for non-Debian systems, audit for apt, apt_repository, dpkg_selections, and ask for the abstraction (package) or the distro split.

A workflow that's been working for me

For a new role, my process now looks like this:

  1. Describe the role to Claude in 2-3 sentences (purpose, target distros, key behaviors).
  2. Generate the scaffolding: defaults/main.yml, tasks/main.yml, a template if needed, meta/main.yml with platforms.
  3. Read every task. Look for the failure modes above (precedence, lifetime, Vault, distros).
  4. Add Molecule tests. Have Claude scaffold molecule/default/, then write the assertions yourself or ask for them.
  5. Run ansible-lint and Molecule. Fix what they catch.
  6. Idempotence check. Run the role twice; second run should report 0 changed.
  7. Refine the README. This is the one place I write from scratch — explaining the role to future-me.

This takes maybe 30 minutes for a moderately complex role. Without AI assistance, the same role would take me a couple of hours.

A note on safety

Ansible runs as root on production servers. Whatever the model generates, you are responsible for what it does. Two patterns I follow:

  • Check --check --diff before any real run. Dry-run the playbook in check mode; verify the diff matches what you expect.
  • Test on a sandbox host first. Especially for new roles. Don't trust the model with production until the role has run cleanly on a throwaway VM.

These are the same disciplines that apply to any infrastructure change. AI doesn't change the discipline; it just makes you faster at the parts before the change.

Why I think Ansible is the right entry point

If you're new to using AI for infrastructure work and want to pick one tool to start with, Ansible is the safest, highest-leverage choice. The structure makes the AI accurate. The idempotency makes mistakes recoverable. The module ecosystem covers most common cases.

By the time you've used AI to write a dozen Ansible playbooks, you'll have developed the intuition for what AI handles well and what needs human attention. That intuition transfers to harder tools — Terraform, Kubernetes, custom shell — where the cost of AI mistakes is higher.

For our full set of AI-driven Ansible workflows, see the IaC category — including ansible-vault-secrets-management and ansible-molecule-testing.


This article was originally published on DevOps AI ToolKit — practical AI workflows for cloud engineers.