googleapis / googleapis/google-cloud-java
[google-auth-library-java] Support domain-wide delegation without downloaded service account keys
- 主要语言
- Java
- 星标
- 2.1k
- 派生
- 1.2k
- 平均合并
- 1 天 23 小时
- 30 天内合并 PR
- 157
描述
**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 还没有评估数据。