45 lines
1.1 KiB
INI
45 lines
1.1 KiB
INI
[defaults]
|
|
# Inventory - override with -i or ANSIBLE_INVENTORY env var
|
|
inventory = /home/ptoal/Dev/inventories/toallab-inventory
|
|
|
|
# Role and collection paths
|
|
roles_path = roles
|
|
collections_path = ./collections:/workspaces/collections:~/.ansible/collections:/usr/share/ansible/collections
|
|
|
|
# Interpreter discovery
|
|
interpreter_python = auto_silent
|
|
|
|
# Performance
|
|
gathering = smart
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = /tmp/ansible_fact_cache
|
|
fact_caching_timeout = 3600
|
|
|
|
# Output
|
|
stdout_callback = yaml
|
|
bin_ansible_callbacks = True
|
|
callbacks_enabled = profile_tasks
|
|
|
|
# SSH settings
|
|
host_key_checking = False
|
|
timeout = 30
|
|
|
|
# Vault
|
|
vault_password_file = vault-id-from-op-client.sh
|
|
|
|
# Misc
|
|
retry_files_enabled = False
|
|
nocows = True
|
|
|
|
[inventory]
|
|
# Enable inventory plugins
|
|
enable_plugins = host_list, yaml, ini, auto, toml
|
|
|
|
[privilege_escalation]
|
|
become = False
|
|
become_method = sudo
|
|
|
|
[ssh_connection]
|
|
pipelining = True
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=no
|