example_boxes/gce-test/Vagrantfile in vagrant-google-0.2.4 vs example_boxes/gce-test/Vagrantfile in vagrant-google-0.2.5.rc0

- old
+ new

@@ -13,18 +13,12 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. Vagrant.configure("2") do |config| - config.vm.provider :google do |google, override| - + config.vm.provider :google do |_google, override| if ENV['GOOGLE_SSH_USER'] and ENV['GOOGLE_SSH_KEY_LOCATION'] override.ssh.username = ENV['GOOGLE_SSH_USER'] override.ssh.private_key_path = ENV['GOOGLE_SSH_KEY_LOCATION'] end - - google.image = "debian-7-wheezy-v20150127" - google.machine_type = "n1-standard-1" - google.zone = "us-central1-f" - end end