netbox-ansible/ansible.cfg
2025-09-27 13:36:00 -04:00

29 lines
551 B
INI

[defaults]
# Basic configuration
inventory = inventory/
roles_path = roles/
timeout = 30
forks = 10
gathering = smart
fact_caching = memory
# Logging
log_path = ./ansible.log
bin_ansible_callbacks = True
# SSH settings
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
pipelining = True
# Performance
host_key_checking = False
retry_files_enabled = False
# Colors
force_color = 1
[privilege_escalation]
become = True
become_method = sudo
become_user = root
become_ask_pass = False