Skip to content

Instantly share code, notes, and snippets.

@mobi3006
Last active June 16, 2016 07:47
Show Gist options
  • Save mobi3006/f94d4a11851932a681c9ce5f9e216b04 to your computer and use it in GitHub Desktop.
Save mobi3006/f94d4a11851932a681c9ce5f9e216b04 to your computer and use it in GitHub Desktop.
How-to: integrate Ansible into Vagrant on Windows-Host
Ansible is not supported for Windows ... therefore you cannot use the typical *ansible*-Provisioner.
But you can use the *ansible_local*-Provisioner like this:
config.vm.provision "ansible_local" do |ansible|
ansible.playbook = "playbook.yml"
ansible.install = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment