ansible-playbooks

Installation
SKILL.md

Ansible Playbooks

Writing and organizing Ansible playbooks for configuration management.

Basic Playbook

---
- name: Configure web servers
  hosts: webservers
  become: yes
  
  vars:
    http_port: 80
    app_version: "1.0.0"
Installs
41
GitHub Stars
166
First Seen
Jan 22, 2026
ansible-playbooks — thebushidocollective/han