Merge pull request #3804 from kenshiro-o/add_gce_pubsub_auth_endpoint
providers/google: add pubsub auth endpoint
This commit is contained in:
commit
0d69159fc5
|
@ -11,6 +11,7 @@ func canonicalizeServiceScope(scope string) string {
|
||||||
"datastore": "https://www.googleapis.com/auth/datastore",
|
"datastore": "https://www.googleapis.com/auth/datastore",
|
||||||
"logging-write": "https://www.googleapis.com/auth/logging.write",
|
"logging-write": "https://www.googleapis.com/auth/logging.write",
|
||||||
"monitoring": "https://www.googleapis.com/auth/monitoring",
|
"monitoring": "https://www.googleapis.com/auth/monitoring",
|
||||||
|
"pubsub": "https://www.googleapis.com/auth/pubsub",
|
||||||
"sql": "https://www.googleapis.com/auth/sqlservice",
|
"sql": "https://www.googleapis.com/auth/sqlservice",
|
||||||
"sql-admin": "https://www.googleapis.com/auth/sqlservice.admin",
|
"sql-admin": "https://www.googleapis.com/auth/sqlservice.admin",
|
||||||
"storage-full": "https://www.googleapis.com/auth/devstorage.full_control",
|
"storage-full": "https://www.googleapis.com/auth/devstorage.full_control",
|
||||||
|
@ -22,9 +23,9 @@ func canonicalizeServiceScope(scope string) string {
|
||||||
"userinfo-email": "https://www.googleapis.com/auth/userinfo.email",
|
"userinfo-email": "https://www.googleapis.com/auth/userinfo.email",
|
||||||
}
|
}
|
||||||
|
|
||||||
if matchedUrl, ok := scopeMap[scope]; ok {
|
if matchedURL, ok := scopeMap[scope]; ok {
|
||||||
return matchedUrl
|
return matchedURL
|
||||||
} else {
|
|
||||||
return scope
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return scope
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue