1
0
ansible-openappsec/ansible.cfg
2024-02-06 07:49:42 +01:00

25 lines
531 B
INI

[defaults]
ansible_managed = Ansible managed - DO NOT EDIT HERE
forks = 10
host_key_checking = False
inventory = environments/production
retry_files_enabled = False
roles_path = roles/
vault_password_file = ansible_vault.key
[privilege_escalation]
become = True
become_user = root
become_method = sudo
[persistent_connection]
connect_interval = 1
connect_retries = 30
connect_timeout = 30
[ssh_connection]
retries = 5
pipelining = True
ssh_args = "-o ControlMaster=auto -o ControlPersist=30m"
control_path = "./ssh/ansible-%%C"