@@ -75,21 +75,15 @@ Service Account for API Access.
7575## Quick Start
7676
7777After installing the plugin (instructions above), the quickest way to get
78- started is to actually use a dummy Google box and specify all the details
79- manually within a ` config.vm.provider ` block. So first, add the Google box
80- using any name you want:
78+ started is to actually use a dummy Google box from Atlas and specify all the
79+ details manually within a ` config.vm.provider ` block.
8180
82- ``` sh
83- $ vagrant box add gce https://github.com/mitchellh/vagrant-google/raw/master/google.box
84- ...
85- ```
86-
87- And then make a Vagrantfile that looks like the following, filling in
88- your information where necessary.
81+ So first, make a Vagrantfile that looks like the following, filling in
82+ your information where necessary:
8983
9084``` ruby
9185Vagrant .configure(" 2" ) do |config |
92- config.vm.box = " gce"
86+ config.vm.box = " google/ gce"
9387
9488 config.vm.provider :google do |google , override |
9589 google.google_project_id = " YOUR_GOOGLE_CLOUD_PROJECT_ID"
@@ -229,7 +223,7 @@ zone you want to actually use, however. This looks like this:
229223``` ruby
230224Vagrant .configure(" 2" ) do |config |
231225
232- config.vm.box = " gce"
226+ config.vm.box = " google/ gce"
233227
234228 config.vm.provider :google do |google |
235229 google.google_project_id = " YOUR_GOOGLE_CLOUD_PROJECT_ID"
@@ -241,7 +235,7 @@ Vagrant.configure("2") do |config|
241235
242236 google.zone_config " us-central1-f" do |zone1f |
243237 zone1f.name = " testing-vagrant"
244- zone1f.image = " debian-8-jessie-v20160511 "
238+ zone1f.image = " debian-8-jessie-v20160923 "
245239 zone1f.machine_type = " n1-standard-4"
246240 zone1f.zone = " us-central1-f"
247241 zone1f.metadata = {' custom' => ' metadata' , ' testing' => ' foobarbaz' }
0 commit comments