Initial repo structure — playbook skeletons, roles, client template inventory

This commit is contained in:
Semaphore
2026-03-10 14:03:29 -07:00
commit 1ae6576dab
22 changed files with 180 additions and 0 deletions

27
ansible.cfg Normal file
View File

@@ -0,0 +1,27 @@
[defaults]
inventory = inventories/
roles_path = roles/
callback_plugins = callback_plugins/
stdout_callback = yaml
callbacks_enabled = n8n_reporter
retry_files_enabled = False
host_key_checking = True
timeout = 30
forks = 10
gathering = smart
fact_caching = jsonfile
fact_caching_connection = /tmp/ansible_facts_cache
fact_caching_timeout = 3600
[privilege_escalation]
become = True
become_method = sudo
become_ask_pass = False
[ssh_connection]
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o StrictHostKeyChecking=yes
pipelining = True
[persistent_connection]
connect_timeout = 30
command_timeout = 30