From 49208376418445f1c1bc4c9bc42300e345d59d20 Mon Sep 17 00:00:00 2001 From: Alex Tavarez Date: Sat, 30 May 2026 05:50:19 -0400 Subject: [PATCH] Set host_key_checking to False --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index ef0eb73..fe38578 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -332,6 +332,7 @@ enable_task_debugger=True # (boolean) Set this to "False" if you want to avoid host key checking by the underlying connection plugin Ansible uses to connect to the host. # Please read the documentation of the specific connection plugin used for details. ;host_key_checking=True +host_key_checking=False # (boolean) Facts are available inside the `ansible_facts` variable, this setting also pushes them as their own vars in the main namespace. # Unlike inside the `ansible_facts` dictionary where the prefix `ansible_` is removed from fact names, these will have the exact names that are returned by the module.