@@ -75,21 +75,15 @@ Service Account for API Access.
75
75
## Quick Start
76
76
77
77
After 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.
81
80
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:
89
83
90
84
``` ruby
91
85
Vagrant .configure(" 2" ) do |config |
92
- config.vm.box = " gce"
86
+ config.vm.box = " google/ gce"
93
87
94
88
config.vm.provider :google do |google , override |
95
89
google.google_project_id = " YOUR_GOOGLE_CLOUD_PROJECT_ID"
@@ -229,7 +223,7 @@ zone you want to actually use, however. This looks like this:
229
223
``` ruby
230
224
Vagrant .configure(" 2" ) do |config |
231
225
232
- config.vm.box = " gce"
226
+ config.vm.box = " google/ gce"
233
227
234
228
config.vm.provider :google do |google |
235
229
google.google_project_id = " YOUR_GOOGLE_CLOUD_PROJECT_ID"
@@ -241,7 +235,7 @@ Vagrant.configure("2") do |config|
241
235
242
236
google.zone_config " us-central1-f" do |zone1f |
243
237
zone1f.name = " testing-vagrant"
244
- zone1f.image = " debian-8-jessie-v20160511 "
238
+ zone1f.image = " debian-8-jessie-v20160923 "
245
239
zone1f.machine_type = " n1-standard-4"
246
240
zone1f.zone = " us-central1-f"
247
241
zone1f.metadata = {' custom' => ' metadata' , ' testing' => ' foobarbaz' }
0 commit comments