> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/ansible.md).

# Ansible

> ansible - run a command somewhere else

Ansible is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates.

Ansible’s main goals are simplicity and ease-of-use. It also has a strong focus on security and reliability, featuring a minimum of moving parts, usage of OpenSSH for transport (with other transports and pull modes as alternatives), and a language that is designed around auditability by humans–even those not familiar with the program.

### [Official Documentation](https://docs.ansible.com/ansible/latest/index.html)

## TIL(s)

* [Add Authorized SSH Key to User using Ansible](/ansible/add-ssh-key-to-user-using-ansible.md)
* [Ansible Add User to System](/ansible/add-user-to-system.md)
* [Ansible Configure Default Inventory File](/ansible/ansible-configure-default-inventory-file.md)
* [Ansible Disable Python Interpreter Warnings](/ansible/ansible-disable-python-interpreter-warnings.md)
* [Ansible Pause Playbook Execution](/ansible/ansible-pause-playbook-execution.md)
* [Ansible Test Connection](/ansible/ansible-test-connection.md)
* [Run Ansible Playbook Locally](/ansible/run-ansible-playbook-locally.md)
* [Setting a Password in Ansible Inventory File](/ansible/setting-a-password-in-ansible-inventory-file.md)
