2020-10-06 12:20:07 +00:00
|
|
|
[defaults]
|
|
|
|
forks = 30
|
|
|
|
timeout = 30
|
|
|
|
inventory = ./ansible/terraform.py
|
|
|
|
remote_user = admin
|
2021-01-25 14:16:38 +00:00
|
|
|
module_name = shell
|
2020-10-06 12:20:07 +00:00
|
|
|
host_key_checking = false
|
|
|
|
# human-readable stdout/stderr results display
|
|
|
|
stdout_callback = debug
|
2020-10-07 19:13:29 +00:00
|
|
|
# Avoid default Python warnings
|
|
|
|
interpreter_python = auto
|
2020-10-06 12:20:07 +00:00
|
|
|
# https://github.com/ansible/ansible/issues/56930
|
2020-10-07 19:13:29 +00:00
|
|
|
force_valid_group_names = ignore
|
2020-10-06 12:20:07 +00:00
|
|
|
|
|
|
|
[privilege_escalation]
|
|
|
|
become = true
|
|
|
|
become_user = root
|
|
|
|
|
|
|
|
[ssh_connection]
|
|
|
|
# this should speed up exection but might cause issues with sudo
|
|
|
|
pipelining = True
|
|
|
|
control_path = /tmp/ansible-ssh-%%h-%%p-%%r
|
|
|
|
# necessary for cloning private git repos
|
2021-02-01 12:22:40 +00:00
|
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o ForwardAgent=yes -o ConnectTimeout=360
|