From bc3075c48bf9c5d70c782f0f3afa02608184e00c Mon Sep 17 00:00:00 2001 From: smasue Date: Mon, 22 May 2017 19:21:59 +0200 Subject: [PATCH] Missing short name in the service scope (Google compute instance) (#14633) * Missing short name in the service scope (Google compute instance ). The missing short name is for Stackdriver Trace append. * Missing short name in the service scope (Google compute instance ). The missing short name is for Stackdriver Trace readonly. --- builtin/providers/google/service_scope.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin/providers/google/service_scope.go b/builtin/providers/google/service_scope.go index e0cc9b4a2..45bcf6004 100644 --- a/builtin/providers/google/service_scope.go +++ b/builtin/providers/google/service_scope.go @@ -23,6 +23,8 @@ func canonicalizeServiceScope(scope string) string { "storage-ro": "https://www.googleapis.com/auth/devstorage.read_only", "storage-rw": "https://www.googleapis.com/auth/devstorage.read_write", "taskqueue": "https://www.googleapis.com/auth/taskqueue", + "trace-append": "https://www.googleapis.com/auth/trace.append", + "trace-ro": "https://www.googleapis.com/auth/trace.readonly", "useraccounts-ro": "https://www.googleapis.com/auth/cloud.useraccounts.readonly", "useraccounts-rw": "https://www.googleapis.com/auth/cloud.useraccounts", "userinfo-email": "https://www.googleapis.com/auth/userinfo.email",