-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathansible.cfg
More file actions
40 lines (31 loc) · 945 Bytes
/
ansible.cfg
File metadata and controls
40 lines (31 loc) · 945 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[defaults]
# Ansible configuration for Policy as Code lab environment
# Don't forget to set this!
filter_plugins = ./filter_plugins
# Inventory
inventory = inventory.yml
# Logging and output
log_path = test_results/latest/ansible.log
stdout_callback = yaml
callback_whitelist = timer, profile_tasks
# Performance and behavior
gathering = smart
fact_caching = jsonfile
fact_caching_connection = test_results/latest/facts
fact_caching_timeout = 86400
host_key_checking = False
retry_files_enabled = True
retry_files_save_path = test_results/latest/
# Collections and modules
collections_paths = ./collections
# SSH and connection settings
timeout = 30
remote_user = admin
private_key_file = ~/.ssh/id_rsa
[ssh_connection]
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o UserKnownHostsFile=/dev/null
pipelining = True
[inventory]
enable_plugins = host_list, script, auto, yaml, ini
[callback_profile_tasks]
task_output_limit = 20