This document describes how to sign in to the Google Cloud CLI with your federated identity by using a browser-based sign in.
Before you begin
Ensure that your administrator has set up and configured Workforce Identity Federation.
Ensure that you have information that supports one of the following options. Your administrator can provide this information.
Workforce identity pool and provider IDs: a workforce identity pool ID and a workforce identity pool provider ID that you can use to create a login configuration file.
Existing configuration file: a path to an existing login configuration file that you can use to sign in to the gcloud CLI.
Configuration file contents: configuration file contents that you can save to a configuration file.
Obtain a login configuration file
This section describes how you can obtain a login configuration file that you can use to sign in to the gcloud CLI.
Create a login configuration file
You can use the workforce identity pool ID and workforce identity pool provider ID to create a login configuration file.
Run the following command to create a login configuration file:
Linux and macOS
gcloud iam workforce-pools create-login-config \ locations/global/workforcePools/WORKFORCE_POOL_ID/providers/WORKFORCE_PROVIDER_ID \ --output-file=LOGIN_CONFIG_PATH
Windows (PowerShell)
gcloud iam workforce-pools create-login-config ` locations/global/workforcePools/WORKFORCE_POOL_ID/providers/WORKFORCE_PROVIDER_ID ` --output-file=LOGIN_CONFIG_PATH
Replace the following:
WORKFORCE_POOL_ID: The Workforce Identity Federation pool ID.WORKFORCE_PROVIDER_ID: The Workforce Identity Federation provider ID.-
LOGIN_CONFIG_PATH: The path to write the login configuration file to. For example,login-config.json.
The login configuration file contains the endpoints used by the gcloud CLI to enable the browser-based authentication flow and set the audience to the IdP that was configured in the workforce identity pool provider. The file doesn't contain confidential information.
The login configuration file content looks similar to the following:
{ "universe_domain": "googleapis.com", "universe_cloud_web_domain": "cloud.google", "type": "external_account_authorized_user_login_config", "audience": "//iam.googleapis.com/locations/global/workforcePools/WORKFORCE_POOL_ID/providers/WORKFORCE_PROVIDER_ID", "auth_url": "https://auth.cloud.google/authorize", "token_url": "https://sts.googleapis.com/v1/oauthtoken", "token_info_url": "https://sts.googleapis.com/v1/introspect" }
You can now sign in to the gcloud CLI.
Save a login configuration file
You can save credential configuration file contents that were provided to you to a file. Note the path, and then sign in to the gcloud CLI.
Sign in to the gcloud CLI
To sign in to the gcloud CLI with a login configuration file, run the following command:
gcloud auth login --login-config="LOGIN_CONFIG_FILE_PATH"
Replace LOGIN_CONFIG_FILE_PATH with the path to
the login configuration file, if you haven't activated this file before.
However, if you have previously activated this file using the
--activate flag, then you don't need to specify the file again.
Instead, run the following command:
gcloud auth login