ansible 인벤토리 파일에서 host_key_checking = false를 설정하는 방법은 무엇입니까? ansible-playbook' vagrant provision' 대신 명령 을 사용하고 싶습니다 . 그러나 설정 host_key_checking=false에 hosts파일은 작동하지 않습니다. # hosts file vagrant ansible_ssh_private_key_file=~/.vagrant.d/insecure_private_key ansible_ssh_user=vagrant ansible_ssh_port=2222 ansible_ssh_host=127.0.0.1 host_key_checking=false Vagrantfile이 값을 재정 의 할 수있는 외부 구성 변수가 있습니까? 201..