googleapis / googleapis/google-cloud-java

[google-auth-library-java] Support domain-wide delegation without downloaded service account keys

オープン
#12,602 コメント 6 件 リアクション 5 件 担当者 0 名 GitHub で見る
priority: p3 type: feature request
主要言語
Java
スター
2.1k
フォーク
1.2k
平均マージ
1日 23時間
マージ済み PR(30日)
154

説明

**Problem Summary**
Currently we create delegated credentials using downloaded ServiceAccount keys.

We learned that the python auth library supports using the Application Default Credential (ADC)
to generate delegated credentials, thus avoiding private key downloads which is a security risk.
The java library apparently does not support this feature.

**Use Case Details**
We have a service account S, that has domain-wide delegation permission our our domain as user U.
We have downloaded a ServiceAccount key for S, and use it to create delegated credentials:

```
GoogleCredentials.fromStream(text-fetched-from-db)
.createDelegated("user-U@our-domain.co")
.createScoped(...);
```

The python library shows that it is possible to use the ADC to generate a credential for S. A detailed example
can be found [here](https://github.com/GoogleCloudPlatform/professional-services/tree/master/examples/gce-to-adminsdk). If this is supported in the java library, presumably the new code would look like below.
The only requirement is for the ADC to have token creator permission on service account S.
```
SomeCredentials.newBuilder()
.setSigner(GoogleCredentials.getApplicationDefault())
.setIssuer(service-account-S-email)
.createDelegated(user-U@our-domain.co)
.createScoped(...);
```

Edited on Oct 24: I was wrong saying it is possible to "use the ADC to generate a credential for S". What can be done is
as follows:

- Domain-wide delegation needs to be granted to the ADC, we can no longer use the service account S.
- The above being done, we can use the ADC to sign an access token for itself. We verified that this doable with AppEngine and Java using a hacked version of ServiceAccountCredentials.java

コントリビューションガイド

コントリビューションガイドを開く

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。