ansible/ansible.cfg

44 lines
683 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
2021-04-22 22:12:57 +02:00
vault_identity_list = main_vault@.main_vault_password , user_vault@.user_vault_password, vpn_vault@.vpn_vault_password
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
# Ask for password
become_ask_pass = True
[diff]
# TO know what changed
always = yes
[ssh_connection]
pipelining = True