infra-nimbus/ansible.cfg
Jakub Sokołowski 04f5071bbe
ignore ansible warnings about group names
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-08-02 19:01:57 -04:00

22 lines
564 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
# https://github.com/ansible/ansible/issues/56930
force_valid_group_names = never
[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