infra-les/ansible.cfg
Jakub Sokołowski 2cb93c4488
add better error formatting to ansible
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-04-26 13:41:56 +02:00

20 lines
482 B
INI

[defaults]
forks = 30
timeout = 30
inventory = ./ansible/terraform.py
remote_user = admin
host_key_checking = false
# human-readable stdout/stderr results display
stdout_callback = debug
[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
ssh_args=-o ForwardAgent=yes -o ConnectTimeout=360