iac_stack/ansible/ansible.cfg

35 lines
782 B
INI
Raw Normal View History

2025-04-27 17:58:17 +02:00
[defaults]
inventory = ./inventory/
host_key_checking = False
retry_files_enabled = False
2025-06-14 14:43:28 +02:00
private_key_file = ~/.ssh/ansible_key
2025-04-27 17:58:17 +02:00
# Caching-Einstellungen
gathering = smart
fact_caching = jsonfile
fact_caching_connection = ./cache
fact_caching_timeout = 86400
# Rollen-Pfade
2025-06-10 22:06:49 +02:00
roles_path = ./roles/
2025-04-27 17:58:17 +02:00
2025-04-27 18:06:44 +02:00
# Vault-Einstellungen
vault_password_file = ./vault.secret
2025-04-27 17:58:17 +02:00
# Ansible-Verhalten
ansible_managed = Ansible managed: {file} modified on %Y-%m-%d %H:%M:%S
2025-04-27 17:58:17 +02:00
2025-06-29 18:54:03 +02:00
# Use the YAML callback plugin.
stdout_callback = yaml
# Use the stdout_callback when running ad-hoc commands.
bin_ansible_callbacks = True
2025-04-27 17:58:17 +02:00
[privilege_escalation]
become = True
become_method = sudo
become_user = root
become_ask_pass = False
[ssh_connection]
ssh_args = -o ControlMaster=auto -o ControlPersist=60s
2025-06-14 14:43:28 +02:00
pipelining = True