Merge pull request #2533 from kbockmanrs/gce_image_scope

[google|compute] auth needs additional scope to insert images into GCS
This commit is contained in:
Nat Welch 2014-03-06 22:23:42 +00:00
commit b76f85fee3
1 changed files with 3 additions and 1 deletions

View File

@ -844,7 +844,9 @@ module Fog
def initialize(options)
base_url = 'https://www.googleapis.com/compute/'
api_scope_url = 'https://www.googleapis.com/auth/compute'
# The devstorage scope is needed to be able to insert images
# devstorage.read_only scope is not sufficient like you'd hope
api_scope_url = 'https://www.googleapis.com/auth/compute https://www.googleapis.com/auth/devstorage.read_write'
shared_initialize(options)
google_client_email = options[:google_client_email]