ansible-playbook-design
Installation
SKILL.md
Ansible Playbook Design
Patterns for designing well-structured, maintainable Ansible playbooks.
State-Based Playbook Pattern
Design playbooks to handle both creation and removal via a state variable.
Core Pattern
---
- name: Manage admin user account
hosts: all
become: true
vars:
admin_state: present # or absent