ansible/ansible.cfg

39 lines
580 B
INI
Raw Normal View History

# Ansible configuration
2020-10-05 09:52:00 +02:00
[defaults]
# Do not create .retry files
retry_files_enabled = False
# Use inventory
inventory = ./hosts
2021-04-05 20:05:11 +02:00
# roles location
roles_path = ./roles
2020-10-05 09:52:00 +02:00
# Custom header in templates
ansible_managed = Ansible managed
2020-10-05 09:52:00 +02:00
# Do not use cows (with cowsay)
nocows = 1
# Do more parallelism
forks = 15
# Some SSH connection will take time
timeout = 60
2022-07-19 11:44:55 +02:00
vault_password_file: vault-client.sh
vault_identity = default
2020-10-13 01:25:02 +02:00
2020-10-05 09:52:00 +02:00
[privilege_escalation]
# Use sudo to get priviledge access
become = True
[diff]
# TO know what changed
always = yes
[ssh_connection]
pipelining = True