ansible
Installation
SKILL.md
Ansible
Ansible is an agentless automation tool for configuration management, application deployment, and orchestration. It uses SSH to connect to managed nodes and executes tasks defined in YAML playbooks.
Installation
# Install Ansible via pip
pip install ansible
# Verify installation
ansible --version
Inventory Management
# inventory/production.ini — Production inventory with groups
[webservers]
Related skills