All,
I'm trying to create a VMware Virtual Environment and can't seem to get 
vagrant up to install the ESXi Vm's. Here's a copy of my vagrantfile. I 
need my ESXi hosts to be 6.7 so i can install NSX-T to overlay. This puts 
me in the situation of only being able to use VMware's Box files
https://app.vagrantup.com/vmware/boxes/esxi/versions/6.7.0-8169922

# Add ESXi Host VM's to VirtualBox

Vagrant.configure("2") do |config|
  config.vm.box = "vmware/esxi"
  config.vm.box_version = "6.7.0-8169922"


 
  config.vm.define :first do |config|
      config.vm.host_name = "host1.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.110"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end

  config.vm.define :second do |config|
      config.vm.host_name = "host2.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.111"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end

  config.vm.define :third do |config|
      config.vm.host_name = "host3.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.112"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end

  config.vm.define :forth do |config|
      config.vm.host_name = "host4.unixcloudfusion.in"
      config.vm.network "private_network", ip:"192.168.33.113"
      config.vm.provider :virtualbox do |vb|
          vb.customize ["modifyvm", :id, "--memory", "3072"]
          vb.customize ["modifyvm", :id, "--cpus", "3"]
      end
  end
end


-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/e4f263f0-d0a4-48ac-acd8-54f571f9445f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to