vagrant-google
vagrant-google copied to clipboard
Vagrant provider for GCE.
Hi, For my use case ideally I need to be able to specify nested virtualisation and a minimum CPU platform similar to how you can with the gcloud command. Is...
I'm trying to install the plugin on my system, but the latest few releases fail to install. Environment: Vagrant 2.2.17 macOS 11.4 By default only `2.2.0` gets installed if I...
I have this Vagrantfile: ```Vagrant.configure("2") do |config| config.vm.box = "google/gce" config.vm.provider :google do |google, override| google.google_project_id = "mycorp-user-dgarstang" google.network_project_id = "mycorp-vpc-sandbox" google.subnetwork = "http://www.googleapis.com/compute/v1/projects/mycorp-vpc-sandbox/regions/us-west1/subnetworks/default-us-west1" google.network = "default" google.google_json_key_location = "/Users/dgarstang/git/puppet-integration-image/mycorp-user-dgarstang-21dbe490a8d8.json"...
The [current support for SSH offered by this provider](https://github.com/mitchellh/vagrant-google/blob/9a5dafd795dfe576a592d501e05dfa9b868d1b09/README.md#ssh-support) makes use of [adding SSH keys in GCE metadata](https://cloud.google.com/compute/docs/instances/adding-removing-ssh-keys). I'm inquiring about whether there's any interest in supporting the alternative way...
Hello! It looks like if `vagrant up --provider=google` fails, the machine gets in a weird state so that it can't be started, accessed or even destroyed anymore. Here's the stack...
See https://github.com/mitchellh/vagrant-google/issues/234#issuecomment-619969750 Scenario that should let us repro: ``` I had two projects A and B, I specified to use project B in this plugin but I used project A’s...
Is it possible to create instances with multiple disks created / attached?
If fog file specifies just a test namespace, disk cannot be properly cleaned up: ``` test: google_project: my-proj google_json_key_location: /my-project-key.json ``` Since disk is not actually instantiated, it doesn't have...
I'm running into the following error when trying to install the plugin on my OSX Sierra setup with the latest vagrant (2.2.6): ``` $ vagrant plugin install vagrant-google Installing the...
I have this Vagrantfile ``` Vagrant.configure("2") do |config| config.vm.box = "google/gce" config.vm.provider :google do |google, override| google.google_project_id = "corp-user-dgarstang" google.google_json_key_location = "~/Downloads/corp-user-dgarstang.json" google.image_family = "centos-7" google.subnetwork = "default-us-west1" #google.subnetwork =...