From 841483c1974794fa157657b2b750d8cd86ea4d17 Mon Sep 17 00:00:00 2001 From: Lorin Hochstein Date: Sun, 8 Feb 2015 15:25:52 -0500 Subject: [PATCH] Disable host key checking for ec2 --- ch12/playbooks/ansible.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ch12/playbooks/ansible.cfg b/ch12/playbooks/ansible.cfg index eadc325..9c27350 100644 --- a/ch12/playbooks/ansible.cfg +++ b/ch12/playbooks/ansible.cfg @@ -4,7 +4,9 @@ pipelining = True gathering = smart fact_caching = redis fact_caching_timeout = 86400 -forks = 20 + +# With EC2, don't want to check host keys +host_key_checking = False [ssh_connection] control_path = %(directory)s/%%h-%%r -- 2.44.0