33 lines
1.3 KiB
INI
33 lines
1.3 KiB
INI
|
[defaults]
|
||
|
# (string) Sets the macro for the 'ansible_managed' variable available for :ref:`ansible_collections.ansible.builtin.template_module` and :ref:`ansible_collections.ansible.windows.win_template_module`. This is only relevant for those two modules.
|
||
|
ansible_managed="Ansible managed file. Be wary of possible overwrites."
|
||
|
|
||
|
# (boolean) Toggle to control the showing of deprecation warnings
|
||
|
deprecation_warnings=False
|
||
|
|
||
|
# (boolean) Set this to "False" if you want to avoid host key checking by the underlying tools Ansible uses to connect to the host
|
||
|
host_key_checking=False
|
||
|
|
||
|
# (pathlist) Comma separated list of Ansible inventory sources
|
||
|
inventory=hosts
|
||
|
|
||
|
# (pathspec) Colon separated paths in which Ansible will search for Modules.
|
||
|
library=../plugins/modules
|
||
|
|
||
|
# (path) File to which Ansible will log on the controller. When empty logging is disabled.
|
||
|
log_path=./ansible.log
|
||
|
|
||
|
# (pathspec) Colon separated paths in which Ansible will search for Roles.
|
||
|
roles_path=../roles
|
||
|
|
||
|
[ssh_connection]
|
||
|
|
||
|
# ssh arguments to use
|
||
|
# Leaving off ControlPersist will result in poor performance, so use
|
||
|
# paramiko on older platforms rather than removing it
|
||
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
|
||
|
|
||
|
# if True, make ansible use scp if the connection type is ssh
|
||
|
# (default is sftp)
|
||
|
scp_if_ssh = True
|