vsphere-influxdb-go/vendor/github.com/vmware/govmomi/scripts/vagrant/vcsa/Vagrantfile

14 lines
328 B
Ruby

# -*- mode: ruby -*-
# vi: set ft=ruby :
# Using the VCSA base box, no provisioning, inventory will be empty.
Vagrant.configure("2") do |config|
config.vm.hostname = "vcsa"
config.vm.box = "vcsa"
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.network "forwarded_port", guest: 443, host: 16443
end