36 lines
745 B
INI
36 lines
745 B
INI
[defaults]
|
|
|
|
# No cows because I am not a funny person
|
|
nocows = 1
|
|
force_color = True
|
|
stdout_callback = unixy
|
|
|
|
# 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
|
|
vault_password_file = .vault_password
|
|
|
|
# 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
|