Skip to content
CloudOps
All guides
AI for Infrastructure as Code · 7 min read

Why AI Loves Ansible (And You Should Let It Help)

Ansible's declarative, idempotent, well-documented structure makes it the easiest infrastructure tool for AI to assist with. Here's how to make the most of it.

  • #ansible
  • #ai
  • #automation
  • #playbooks

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.

Newsletter

Get weekly AI workflows for DevOps engineers

Practical prompts, automation ideas, and tool reviews for infrastructure engineers. One email per week. No spam.