From 0ebde24d901a183215472a24e3ae01f885d1f36b Mon Sep 17 00:00:00 2001 From: DerLinkman Date: Sat, 18 Jul 2026 00:07:11 +0200 Subject: [PATCH] Add group_vars path, ssh connection settings, and ignore vault_pass/logs --- .gitignore | 2 ++ ansible.cfg | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9d92498..6390927 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ hosts proxmox.* .vscode +.vault_pass +logs \ No newline at end of file diff --git a/ansible.cfg b/ansible.cfg index b2eabc1..1c7f2b4 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -1,3 +1,7 @@ [defaults] host_key_checking = False -roles_path = ./roles:/etc/ansible/roles \ No newline at end of file +roles_path = ./roles:/etc/ansible/roles +group_vars = ./group_vars + +[ssh_connection] +ssh_args = -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null \ No newline at end of file