ansible/ansible.cfg

36 lines
746 B
INI
Raw Permalink Normal View History

2021-02-12 22:13:37 +01:00
[defaults]
# No cows because I am not a funny person
nocows = 1
force_color = True
#stdout_callback = unixy
2021-02-12 22:13:37 +01:00
# Default inventory file, override with -i
inventory = ./inv/static.yml
# Where to load roles
roles_path = ./roles
# Smart facts gathering : https://docs.ansible.com/ansible/latest/reference_appendices/config.html#default-gathering
gathering = smart
# Local file with vault password
2021-03-14 19:33:24 +01:00
vault_password_file = .vault_password
2021-02-12 22:13:37 +01:00
# Do not create .retry files
retry_files_enabled = False
# python interpreter auto-discovery
interpreter_python = /usr/bin/python3
# Fail on undefined variables
error_on_undefined_vars = True
[privilege_escalation]
# Default sudo user
become_user = root
[ssh_connection]
pipelining = True
scp_if_ssh = True