2020-10-05 09:52:00 +02:00
|
|
|
# Ansible configuration, copy from the AURORE config.
|
|
|
|
|
|
|
|
[defaults]
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2021-01-29 22:27:04 +01:00
|
|
|
vault_identity_list = main_vault@.main_vault_password , user_vault@.user_vault_password
|
|
|
|
#vault_password_file = .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
|