-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathansible.cfg
More file actions
26 lines (23 loc) · 799 Bytes
/
ansible.cfg
File metadata and controls
26 lines (23 loc) · 799 Bytes
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
[defaults]
inventory_plugins = ./ansible/plugins/inventory
lookup_plugins = ./ansible/plugins/lookup
inventory = ./config/splunk_config.yml, ./config/aws_ec2.yml, ./inventory
roles_path = ./ansible/roles
host_key_checking = false
force_color = 1
#log_path=./ansible.log
timeout = 30
forks = 20
#callbacks_enabled = profile_tasks
gathering = smart
fact_caching = jsonfile
fact_caching_connection = /tmp/ansible_facts
fact_caching_timeout = 86400
[inventory]
any_unparsed_is_failed = true
[ssh_connection]
ssh_args = -o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes -o ForwardAgent=yes -o ControlMaster=auto -o ControlPersist=60s
pipelining = true
[privilege_escalation]
# When changing become_method, create a file ansible/group_vars/all/ansible.yml with the same value
#become_method = sudo