From 93de4f5a54e8ad6533e9ed29a7719659043cf9fd Mon Sep 17 00:00:00 2001 From: Salt Date: Sun, 15 Sep 2019 01:41:10 -0500 Subject: [PATCH] Disable host key checking NOTE: THIS IS A REALLY DUMB IDEA DON'T DO THIS I'm only doing this because I'm constantly tearing down my environment for learning purposes DO NOT RUN THIS IN PROD YOU WILL DIE --- ansible.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/ansible.cfg b/ansible.cfg index e270e47..c0c368e 100644 --- a/ansible.cfg +++ b/ansible.cfg @@ -4,5 +4,6 @@ inventory = ec2.py remote_user = ubuntu private_key_file = ~/.ssh/ansible ssh_extra_args =-o ForwardAgent=yes -o StrictHostKeyChecking=no +host_key_checking = false deprecation_warnings = false ask_vault_pass = true