mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
37 lines
1.2 KiB
INI
37 lines
1.2 KiB
INI
[defaults]
|
|
# General settings
|
|
nocows = True
|
|
executable = /bin/bash
|
|
stdout_callback = yaml
|
|
force_valid_group_names = ignore
|
|
# File/Directory settings
|
|
log_path = ~/.ansible/ansible.log
|
|
inventory = ./inventory
|
|
roles_path = ~/.ansible/roles:./roles
|
|
collections_path = ~/.ansible/collections
|
|
remote_tmp = ~/.ansible/tmp
|
|
local_tmp = ~/.ansible/tmp
|
|
# Fact Caching settings
|
|
fact_caching = jsonfile
|
|
fact_caching_connection = ~/.ansible/facts_cache
|
|
# SSH settings
|
|
remote_port = 22
|
|
timeout = 60
|
|
host_key_checking = False
|
|
privatekeyfile = ~/.ssh/id_ed25519
|
|
# Plugin settings
|
|
vars_plugins_enabled = host_group_vars,community.sops.sops
|
|
|
|
[inventory]
|
|
unparsed_is_failed = true
|
|
|
|
[privilege_escalation]
|
|
become = True
|
|
|
|
[ssh_connection]
|
|
scp_if_ssh = smart
|
|
retries = 3
|
|
ssh_args = -o ControlMaster=auto -o ControlPersist=30m -o Compression=yes -o ServerAliveInterval=15s
|
|
pipelining = True
|
|
control_path = %(directory)s/%%h-%%r
|