ansible/ansible.cfg

20 lines
420 B
INI
Raw Normal View History

2019-08-30 14:13:34 -05:00
[defaults]
2020-10-08 20:44:02 -05:00
gathering = smart
interpreter_python = python3
2019-10-11 14:08:22 -05:00
inventory = inventory
2020-06-24 06:54:45 -05:00
roles_path = roles
2020-10-08 20:44:02 -05:00
# Connection info
2019-08-30 14:13:34 -05:00
private_key_file = ~/.ssh/ansible
host_key_checking = false
2020-10-08 20:44:02 -05:00
# Secrets
ask_become_pass = true
ask_vault_pass = true
2020-10-08 20:44:02 -05:00
# Warnings
command_warnings = true
#deprecation_warnings = false
system_warnings = true
[ssh_connection]
2020-04-26 01:39:47 -05:00
pipelining = true
2020-10-08 20:44:02 -05:00
ssh_extra_args =-o ForwardAgent=yes -o StrictHostKeyChecking=no