Sha256: fa10ceb735673652923f3b3fdec9035cac3b40366e4625b4b74df23c67c906b5

Contents?: true

Size: 925 Bytes

Versions: 14

Compression:

Stored size: 925 Bytes

Contents

Vagrant.configure("2") do |config|
  config.vm.box = "basic"

  config.vm.define :z1a do |z1a|
    z1a.vm.provider :google do |google|
      google.zone = "australia-southeast1-a"

      google.zone_config "australia-southeast1-a" do |z1a_zone|
        z1a_zone.name = "vagrant-acceptance-multi-z1a-#{('a'..'z').to_a.sample(8).join}"
        z1a_zone.machine_type = "n1-standard-1"
        z1a_zone.disk_type = "pd-ssd"
        z1a_zone.image_family = "debian-9"
      end
    end
  end

  config.vm.define :z1b do |z1b|
    z1b.vm.provider :google do |google|
      google.zone = "australia-southeast1-b"

      google.zone_config "australia-southeast1-b" do |z1b_zone|
        z1b_zone.name = "vagrant-testing-acceptance-multi-z1b-#{('a'..'z').to_a.sample(8).join}"
        z1b_zone.machine_type = "n1-standard-2"
        z1b_zone.disk_type = "pd-ssd"
        z1b_zone.image_family = "debian-9"
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
vagrant-google-2.7.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.6.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.5.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.4.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.4.0.rc0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.3.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.3.0.rc0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.2.1 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.2.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.2.0.rc0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.1.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.0.0 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.0.0.rc1 test/acceptance/skeletons/multi_instance/Vagrantfile
vagrant-google-2.0.0.rc0 test/acceptance/skeletons/multi_instance/Vagrantfile