# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

  config.vm.define "tmp" do |tmp|
    # Every Vagrant virtual environment requires a box to build off of.
    tmp.vm.box = "ubuntu/trusty32"

    tmp.vm.network "forwarded_port", guest: 80, host: 8080
    config.vm.network "private_network", type: "dhcp"

    tmp.vm.provision "ansible" do |ansible|
      ansible.playbook = "ansible/main.yml"
    end
  end

end
