forked from network-automation/toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.cfg
27 lines (23 loc) · 791 Bytes
/
ansible.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# config file for ansible -- http://ansible.com/
# ==============================================
# nearly all parameters can be overridden in ansible-playbook
# or with command line flags. ansible will read ANSIBLE_CONFIG,
# ansible.cfg in the current working directory, .ansible.cfg in
# the home directory or /etc/ansible/ansible.cfg, whichever it
# finds first
[defaults]
collections_paths = ./collections
inventory = inventory/tag-inventory
stdout_callback = yaml
forks = 1
host_key_checking = False
retry_files_enabled = False
no_target_syslog = False
callback_whitelist = timer, profile_roles, profile_tasks
interpreter_python = auto_silent
deprecation_warnings = False
[ssh_connection]
scp_if_ssh = True
[persistent_connection]
connect_timeout = 30
command_timeout = 30