From 658e35a145de286e5cd5e58c6748656c9cefb7f3 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Wed, 26 Nov 2025 20:50:00 +0000 Subject: [PATCH] Explicitly enable inject_facts_as_vars Injecting facts as variables is being deprecated by default, override this in `ansible.cfg` to silence deprecation warnings. --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index 375c362..c0ec017 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -3,3 +3,4 @@ collections_path = collections library = library roles_path = roles result_format = yaml +inject_facts_as_vars = True