-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathansible.cfg
33 lines (23 loc) · 888 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
28
29
30
31
32
33
[defaults]
# Installs collections into [current dir]/ansible_collections/namespace/collection_name
collections_paths = ./
# 6/13/21 bento/ubuntu-18.04 gather times out at 10s
gather_timeout = 60
#https://andreas.scherbaum.la/blog/archives/998-Ansible-TRANSFORM_INVALID_GROUP_CHARS-deprecation-warning.html
force_valid_group_names = ignore
# Installs roles into [current dir]/roles/namespace.rolename
roles_path = ./roles
# default vault password file location
vault_password_file = ./.vault_pass.txt
#inventory = ./inventory
display_args_to_stdout = True
# variable in inventory file
# ansible_python_interpreter=/usr/libexec/platform-python
# ansible_python_interpreter=/usr/bin/python3
#interpreter_python = /usr/libexec/platform-python
interpreter_python = /usr/bin/python3
[privilege_escalation]
[paramiko_connection]
[ssh_connection]
host_key_checking = False
[accelerate]