-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add code sample and test for getting an access token from an im…
…personated SA (#1289) Co-authored-by: Tianzi Cai <[email protected]>
- Loading branch information
1 parent
104e2b3
commit 826ee40
Showing
2 changed files
with
108 additions
and
13 deletions.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
samples/snippets/src/main/java/AccessTokenFromImpersonatedCredentials.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* Copyright 2023 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// [START auth_cloud_accesstoken_impersonated_credentials] | ||
|
||
import com.google.auth.oauth2.GoogleCredentials; | ||
import com.google.auth.oauth2.ImpersonatedCredentials; | ||
import java.io.IOException; | ||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
public class AccessTokenFromImpersonatedCredentials { | ||
|
||
public static void main(String[] args) throws IOException { | ||
// TODO(Developer): Replace the below variables before running the code. | ||
|
||
// Provide the scopes that you might need to request access to Google APIs, | ||
// depending on the level of access you need. | ||
// This example uses the cloud-wide scope and uses IAM to narrow the permissions. | ||
// https://cloud.google.com/docs/authentication/external/authorization-gcp | ||
// For more information, see: https://developers.google.com/identity/protocols/oauth2/scopes | ||
String scope = "https://www.googleapis.com/auth/cloud-platform"; | ||
|
||
// The name of the privilege-bearing service account for whom the credential is created. | ||
String impersonatedServiceAccount = "[email protected]"; | ||
|
||
getAccessToken(impersonatedServiceAccount, scope); | ||
} | ||
|
||
// Use a service account (SA1) to impersonate as another service account (SA2) and obtain id token | ||
// for the impersonated account. | ||
// To obtain token for SA2, SA1 should have the "roles/iam.serviceAccountTokenCreator" permission | ||
// on SA2. | ||
public static void getAccessToken( | ||
String impersonatedServiceAccount, String scope) throws IOException { | ||
|
||
// Construct the GoogleCredentials object which obtains the default configuration from your | ||
// working environment. | ||
GoogleCredentials googleCredentials = GoogleCredentials.getApplicationDefault(); | ||
|
||
// delegates: The chained list of delegates required to grant the final accessToken. | ||
// For more information, see: | ||
// https://cloud.google.com/iam/docs/create-short-lived-credentials-direct#sa-credentials-permissions | ||
// Delegate is NOT USED here. | ||
List<String> delegates = null; | ||
|
||
// Create the impersonated credential. | ||
ImpersonatedCredentials impersonatedCredentials = | ||
ImpersonatedCredentials.newBuilder() | ||
.setSourceCredentials(googleCredentials) | ||
.setTargetPrincipal(impersonatedServiceAccount) | ||
.setScopes(Arrays.asList(scope)) | ||
.setLifetime(300) | ||
.setDelegates(delegates) | ||
.build(); | ||
|
||
// Get the OAuth2 token. | ||
// Once you've obtained the OAuth2 token, you can use it to make an authenticated call. | ||
impersonatedCredentials.refresh(); | ||
String accessToken = impersonatedCredentials.getAccessToken().getTokenValue(); | ||
System.out.println("Generated access token."); | ||
} | ||
} | ||
// [END auth_cloud_accesstoken_impersonated_credentials] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters