ansible/ansible.cfg
jeltz 7b24bc3d33
Some checks failed
continuous-integration/drone/push Build is failing
Set ask_vault_pass in ansible.cfg
2021-12-16 06:02:46 +01:00

34 lines
544 B
INI

[defaults]
ask_vault_pass = True
# Explicitly redefine some defaults to make subfolder execution work
roles_path = ./roles
# 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
# Do not use cows (with cowsay)
nocows = 1
# Do more parallelism
forks = 15
# Some SSH connection will take time
timeout = 60
remote_user = root
[diff]
# TO know what changed
always = yes
[ssh_connection]
pipelining = True