Reduced OAuth scope to read_write

This commit is contained in:
Konstantin Chukhlomin
2017-08-07 09:17:16 -04:00
committed by bergquist
parent fcdf282090
commit 7e3c9fcc1c
3 changed files with 3 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ func (u *GCSUploader) Upload(imageDiskPath string) (string, error) {
log.Debug("Creating JWT conf")
conf, err := google.JWTConfigFromJSON(data, "https://www.googleapis.com/auth/devstorage.full_control")
conf, err := google.JWTConfigFromJSON(data, "https://www.googleapis.com/auth/devstorage.read_write")
if err != nil {
return "", err
}