templier-ansible/ansible.cfg
Yohann D'ANELLO 35c62d906b
Basic configuration with docker
Signed-off-by: Yohann D'ANELLO <yohann.danello@gmail.com>
2020-12-22 00:17:10 +01:00

42 lines
629 B
INI

# Ansible configuration
[defaults]
# Use true Python version
interpreter_python = /usr/bin/python3
# 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
# Ask for password
become_ask_pass = True
[diff]
# TO know what changed
always = yes
[ssh_connection]
pipelining = True