You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
683 B
43 lines
683 B
# Ansible configuration |
|
|
|
[defaults] |
|
|
|
# Do not create .retry files |
|
retry_files_enabled = False |
|
|
|
# Use inventory |
|
inventory = ./hosts |
|
|
|
# roles location |
|
roles_path = ./roles |
|
|
|
# Custom header in templates |
|
ansible_managed = Ansible managed |
|
|
|
# Do not use cows (with cowsay) |
|
nocows = 1 |
|
|
|
# Do more parallelism |
|
forks = 15 |
|
|
|
# Some SSH connection will take time |
|
timeout = 60 |
|
|
|
vault_identity_list = main_vault@.main_vault_password , user_vault@.user_vault_password, vpn_vault@.vpn_vault_password |
|
|
|
[privilege_escalation] |
|
|
|
# Use sudo to get priviledge access |
|
become = True |
|
|
|
# Ask for password |
|
become_ask_pass = True |
|
|
|
[diff] |
|
|
|
# TO know what changed |
|
always = yes |
|
|
|
|
|
[ssh_connection] |
|
pipelining = True
|
|
|