Sha256: ef6ff59ea4e88a9ef0b19dcb9c9dd22a4e49ab4f3e763835aa50052f89bcfad8

Contents?: true

Size: 1.42 KB

Versions: 1

Compression:

Stored size: 1.42 KB

Contents

# -*- mde: ruby -*-
# vi: set ft=ruby :
# Copyright 2013 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.box = "gce"

  config.vm.provider :google do |google, override|
    google.google_project_id = "dev-utility-90115"
    google.google_client_email = "768099535741-jcfc4jlatsvelvosl2cgmqcsqoep3d1k@developer.gserviceaccount.com"
    #google.google_key_location = "./vagrant-google-7bb59a77ba3e.p12"
    google.google_json_key_location = "/home/temikus/code/vagrant-google/vagrant-google-49d3afc6bc4e.json"
   
    override.ssh.username = "temikus"
    override.ssh.private_key_path = "~/.ssh/id_rsa"
   
    google.zone = "europe-west1-d"

    google.zone_config "europe-west1-d" do |zone1d|
        zone1d.name = "testing-vagrant"
        zone1d.image = "debian-7-wheezy-v20150127"
        zone1d.zone = "europe-west1-d"
        zone1d.disk_type = "pd-ssd"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vagrant-google-0.2.2 Vagrantfile