ansible/ansible.cfg
Yohann D'ANELLO 1bd2a43ccd
All checks were successful
continuous-integration/drone/push Build is passing
Use pass to load become and vault passwords
Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
2021-03-04 03:19:02 +01:00

42 lines
691 B
INI

# Ansible configuration
[defaults]
# Explicitely redefined some defaults to make play execution work
roles_path = ./roles
vars_plugins = ./vars_plugins
# Do not create .retry files
retry_files_enabled = False
# Use inventory
inventory = ./hosts
# Custom header in templates
ansible_managed = Ansible managed, modified on %Y-%m-%d %H:%M:%S by {uid}
# Do not use cows (with cowsay)
nocows = 1
# Do more parallelism
forks = 15
# Some SSH connection will take time
timeout = 60
[privilege_escalation]
# Use sudo to get priviledge access
become = True
# Use custom become plugin
become_ask_pass = False
[diff]
# TO know what changed
always = yes
[ssh_connection]
pipelining = True