I am using vagrant to run ubuntu VM on my Mac.
I am trying to provision vagrant with the playbook I wrote but when I do im getting an error about the host.
this is my Vagrant file:
Vagrant.configure(“2”) do |config|
VAGRANT_DEFAULT_PROVIDER = “virtualbox”
config.vm.hostname = “carebox-idan”
config.vm.provision “ansible”, playbook: “playbook.yml”
config.vm.network “public_network”, ip: “192.168.56.4”, bridge: [“en0: Wi-Fi (Wireless)”]
config.vm.box = “laravel/homestead”
config.vm.network “forwarded_port”, guest: 8200, host: 8200, auto_correct: “true”
config.ssh.forward_agent = true
end
this is my playbook.yml: