Ansible: Difference between revisions

From wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(10 intermediate revisions by the same user not shown)
Line 1: Line 1:
== Ansible ==
== Ansible ==


* https://en.wikipedia.org/wiki/Ansible_(software)
* https://www.ansible.com
* https://www.ansible.com
* https://en.wikipedia.org/wiki/Ansible_(software)
* https://galaxy.ansible.com/ – Ansible Galaxy is Ansible’s official hub for sharing Ansible content
* https://linux.die.net/man/1/ansible
 
=== docs.ansible.com ===
* https://docs.ansible.com/ansible/latest/
* https://docs.ansible.com/ansible/latest/user_guide/
* https://docs.ansible.com/ansible/latest/user_guide/
* https://docs.ansible.com/ansible/latest/user_guide/intro_adhoc.html – introduction to ad hoc commands – on the command line, w/o playbooks
* https://docs.ansible.com/ansible/latest/user_guide/intro_inventory.html
* https://docs.ansible.com/ansible/latest/user_guide/intro_patterns.html
=== literature etc ===
* https://learning.oreilly.com/library/view/ansible-up-and/9781098109141/ – Ansible: Up and Running, 3rd Edition
* https://ansible-tips-and-tricks.readthedocs.io/en/latest/ansible/inventory/
* https://www.educba.com/ansible-hosts-file/
=== Ansible modules ===
* https://docs.ansible.com/ansible/latest/collections/ansible/builtin/shell_module.html
* https://docs.ansible.com/ansible/latest/collections/ansible/builtin/command_module.html
* https://docs.ansible.com/ansible/latest/collections/ansible/builtin/script_module.html


=== ansible-vault ===
=== ansible-vault ===
Line 13: Line 31:


<pre>$ ansible-vault create ENCRYPTED_FILE</pre>
<pre>$ ansible-vault create ENCRYPTED_FILE</pre>
=== 2023 bookmarks ===
* https://github.com/search?q=repo%3Aansible%2Fansible%20examples&type=code
* https://github.com/ansible/ansible/tree/stable-2.9/examples
* https://docs.ansible.com/ansible/latest/user_guide/index.html
* https://docs.ansible.com/ansible/latest/playbook_guide/playbooks_loops.html
* https://riptutorial.com/ansible/example/22403/group-variables-with-static-inventory
* https://riptutorial.com/ansible/awesome-learning/book
* https://riptutorial.com/ansible/example/25171/understanding-ansible-architecture !!!!!!!!!
* https://riptutorial.com/ansible/example/22403/group-variables-with-static-inventory


=== … ===
=== … ===

Latest revision as of 19:56, 25 July 2023

Ansible[edit]

docs.ansible.com[edit]

literature etc[edit]

Ansible modules[edit]

ansible-vault[edit]

encryption/decryption utility for Ansible data files

$ ansible-vault create ENCRYPTED_FILE

2023 bookmarks[edit]

[edit]