]> arthur.barton.de Git - ansible-collection-boilerplate.git/blob - ansible.cfg
Add a bit more documentation
[ansible-collection-boilerplate.git] / ansible.cfg
1 # Ansible configuration.
2 # See <https://github.com/ansible/ansible/blob/devel/examples/ansible.cfg>.
3
4 [defaults]
5 ansible_managed = Managed by Ansible, DO NOT MODIFY, changes will be overwritten!
6 collections_paths = ansible_galaxy
7 fact_caching = jsonfile
8 fact_caching_connection = .cache
9 fact_caching_timeout = 3600
10 gathering = smart
11 interpreter_python = auto_silent
12 inventory = hosts.ini
13 roles_path = ansible_galaxy/ansible_roles:roles
14 stdout_callback = yaml
15
16 [colors]
17 changed = bright yellow
18 error = bright red
19 ok = bright green
20
21 [diff]
22 always = True
23
24 [privilege_escalation]
25 become = True
26 become_ask_pass = True
27
28 [ssh_connection]
29 control_path = %(directory)s/%%h-%%p-%%r
30 pipelining = True