25 lines
531 B
INI
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"
|