Sha256: 4cee9babb0014df72adc2c64d4c47d1efe6e834cc6379dc4ebd38389c2c63126
Contents?: true
Size: 466 Bytes
Versions: 2
Compression:
Stored size: 466 Bytes
Contents
Vagrant.configure("2") do |config| config.vm.box = "basic" config.vm.provider :google do |google| google.zone = "australia-southeast1-b" google.zone_config "australia-southeast1-b" do |zone| zone.name = "vagrant-acceptance-preemptible-#{('a'..'z').to_a.sample(8).join}" # Some images no longer fit into default 10GB disk size zone.disk_size = 30 zone.disk_type = "pd-ssd" zone.image_family = "centos-7" end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
vagrant-google-2.7.0 | test/acceptance/skeletons/image_family/Vagrantfile |
vagrant-google-2.6.0 | test/acceptance/skeletons/image_family/Vagrantfile |