Descrição do problema: Após integrar o provision do Playbook no Vagrant File para subir o Ansible e executar vagrant ansible up, eu tive o seguinte erro:
UNREACHABLE! => {"changed": false, "msg": "Failed to connect to the host via ssh: command-line: line 0: Bad configuration option: -o", "unreachable": true}
Solução:
Alterar o arquivo hosts do Ansible de:
ansible_ssh_common_args='-o StrictHostKeyChecking=no'
Para:
ansible_ssh_extra_args='-o StrictHostKeyChecking=no'