Configure Workload Identity Federation with Kubernetes Stay organized with collections Save and categorize content based on your preferences.
This guide describes how to use Workload Identity Federation to letworkloads that run on Azure Kubernetes Service (AKS), Amazon Elastic KubernetesService, or on a self-hosted Kubernetes cluster authenticate to Google Cloud.
Kubernetes lets you configure a cluster so that workloads can obtain KubernetesServiceAccount tokensfrom a projected volume.By setting up Workload Identity Federation, you can let workloads use theseKubernetes ServiceAccount tokens to authenticate to Google Cloud.
If you're using GKE, useWorkload Identity Federation for GKEinstead of configuring Workload Identity Federation.
Before you begin
Before you configure Workload Identity Federation, make sure that yourKubernetes cluster meets the following criteria:
GKE
For Google Kubernetes Engine (GKE) users, seeAuthenticate to Google Cloud APIs from GKE workloads.
AKS
Make sure your cluster meets the following criteria:
You've enabled theOIDC issuerfeature.
You must enable this feature so that Workload Identity Federationcan access the OpenID Connect metadata and the JSON Web Key Set (JWKS) forthe cluster.
EKS
You don't need to make any changes in your EKS configuration.
Kubernetes
Make sure your cluster meets the following criteria:
You're running Kubernetes 1.20 or later.
Previous versions of Kubernetes used a different ServiceAccount tokenformat that is not compatible with the instructions in this document.
You configured
kube-apiserverso that itsupportsServiceAccounttoken volume projections.
The cluster doesn't need to be accessible over the internet.
Configure Workload Identity Federation
You only need to perform these steps once for each Kubernetes cluster. You can then usethe same workload identity pool and provider for multiple Kubernetes pods and acrossmultiple Google Cloud projects.
To start configuring Workload Identity Federation, do the following:
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
Roles required to select or create a project
- Select a project: Selecting a project doesn't require a specific IAM role—you can select any project that you've been granted a role on.
- Create a project: To create a project, you need the Project Creator role (
roles/resourcemanager.projectCreator), which contains theresourcemanager.projects.createpermission.Learn how to grant roles.
We recommend that youuse a dedicated project to manage workload identity pools and providers.Verify that billing is enabled for your Google Cloud project.
Enable the IAM, Resource Manager, Service Account Credentials, and Security Token Service APIs.
Roles required to enable APIs
To enable APIs, you need the Service Usage Admin IAM role (roles/serviceusage.serviceUsageAdmin), which contains theserviceusage.services.enable permission.Learn how to grant roles.
Define an attribute mapping and condition
Kubernetes ServiceAccount tokens contain multiple claims, including the following:
sub: Contains the namespace and name of the ServiceAccount-for example,system:serviceaccount:NAMESPACE:KSA_NAME,whereNAMESPACEis the namespace of theServiceAccount andKSA_NAMEis the name of theServiceAccount."kubernetes.io".namespace: Contains the namespace of the ServiceAccount."kubernetes.io".serviceaccount.name: Contains the name of the ServiceAccount."kubernetes.io".pod.name: Contains the name of the pod.
To usesub as subject identifier (google.subject) in Google Cloud,use the following mapping:
google.subject=assertion.sub
Optionally, you canmap additional attributes.You can then refer to these attributes when granting access to resources.For example:
google.subject=assertion.sub,attribute.namespace=assertion['kubernetes.io']['namespace'],attribute.service_account_name=assertion['kubernetes.io']['serviceaccount']['name'],attribute.pod=assertion['kubernetes.io']['pod']['name']
Optionally, define anattribute condition.Attribute conditions are CEL expressions that can check assertion attributes andtarget attributes. If the attribute condition evaluates totrue for a givencredential, the credential is accepted. Otherwise, the credential is rejected.
You can use an attribute condition to restrict which Kubernetes ServiceAccountscan use Workload Identity Federation to obtain short-lived Google Cloudtokens.For example, the following condition restricts access to KubernetesServiceAccounts from thebackend andmonitoring namespaces:
assertion['kubernetes.io']['namespace'] in ['backend', 'monitoring']
Create the workload identity pool and provider
Required roles
To get the permissions that you need to configure Workload Identity Federation, ask your administrator to grant you the following IAM roles on the project:
- Workload Identity Pool Admin (
roles/iam.workloadIdentityPoolAdmin) - Service Account Admin (
roles/iam.serviceAccountAdmin)
For more information about granting roles, seeManage access to projects, folders, and organizations.
You might also be able to get the required permissions throughcustom roles or otherpredefined roles.
Alternatively, the IAM Owner (roles/owner) basic role alsoincludes permissions to configure identity federation.You should not grant basic roles in a production environment, but you can grant them in adevelopment or test environment.To create a workload identity pool and provider, do the following:
AKS
Determine the issuer URL of your AKS cluster:
az aks show -nNAME -gRESOURCE_GROUP --query "oidcIssuerProfile.issuerUrl" -otsv
Replace the following:
NAME: The name of the clusterRESOURCE_GROUP: The resource group of the cluster
The command outputs the issuer URL. You need the issuer URL in one of the following steps.
If the command doesn't return an issuer URL, verify that you'veenabled theOIDC issuerfeature.
Create a new workload identity pool:
gcloud iam workload-identity-pools createPOOL_ID \ --location="global" \ --description="DESCRIPTION" \ --display-name="DISPLAY_NAME"
Replace the following:
POOL_ID: The unique ID for the pool.DISPLAY_NAME: The name of the pool.DESCRIPTION: A description of the pool thatyou choose. This description appears when you grant access to poolidentities.
Add the AKS cluster as a workload identity pool provider:
gcloud iam workload-identity-pools providers create-oidcWORKLOAD_PROVIDER_ID \ --location="global" \ --workload-identity-pool="POOL_ID" \ --issuer-uri="ISSUER" \ --attribute-mapping="MAPPINGS" \ --attribute-condition="CONDITIONS"
Replace the following:
WORKLOAD_PROVIDER_ID: A unique workload identitypool provider ID of your choice.POOL_ID: The workload identity pool IDthat you created earlier.ISSUER: The issuer URI that you determinedearlier.MAPPINGS: A comma-separated list ofattribute mappings that you createdearlier in this guide.CONDITIONS: An optionalattribute condition that you createdearlier in this guide. Remove the parameter ifyou don't have an attribute condition.
EKS
Determine the issuer URL of your EKS cluster:
aws eks describe-cluster --nameNAME --query "cluster.identity.oidc.issuer" --output text
Replace
NAMEwith the name of the cluster.The command outputs the issuer URL. You need the issuer URL in one of the following steps.
Create a new workload identity pool:
gcloud iam workload-identity-pools createPOOL_ID \ --location="global" \ --description="DESCRIPTION" \ --display-name="DISPLAY_NAME"
Replace the following:
POOL_ID: The unique ID for the pool.DISPLAY_NAME: The name of the pool.DESCRIPTION: A description of the pool thatyou choose. This description appears when you grant access to poolidentities.
Add the EKS cluster as a workload identity pool provider:
gcloud iam workload-identity-pools providers create-oidcWORKLOAD_PROVIDER_ID \ --location="global" \ --workload-identity-pool="POOL_ID" \ --issuer-uri="ISSUER" \ --attribute-mapping="MAPPINGS" \ --attribute-condition="CONDITIONS"
Replace the following:
WORKLOAD_PROVIDER_ID: A unique workload identitypool provider ID of your choice.POOL_ID: The workload identity pool IDthat you created earlier.ISSUER: The issuer URI that you determinedearlier.MAPPINGS: A comma-separated list ofattribute mappings that you createdearlier in this guide.CONDITIONS: An optionalattribute condition that you createdearlier in this guide. Remove the parameter ifyou don't have an attribute condition.
Kubernetes
Connect to your Kubernetes cluster and use
kubectlto determineyour cluster's issuer URL:kubectl get --raw /.well-known/openid-configuration | jq -r .issuer
You need the issuer URL in one of the following steps.
Download the cluster's JSON Web Key Set (JWKS):
kubectl get --raw /openid/v1/jwks > cluster-jwks.json
In one of the following steps, you upload the JWKSso that Workload Identity Federation can verify the authenticity ofthe Kubernetes ServiceAccount tokens issued by your cluster.
Create a new workload identity pool:
gcloud iam workload-identity-pools createPOOL_ID \ --location="global" \ --description="DESCRIPTION" \ --display-name="DISPLAY_NAME"
Replace the following:
POOL_ID: The unique ID for the pool.DISPLAY_NAME: The name of the pool.DESCRIPTION: A description of the pool thatyou choose. This description appears when you grant access to poolidentities.
Add the Kubernetes cluster as a workload identity pool provider and uploadthe cluster's JWKS:
gcloud iam workload-identity-pools providers create-oidcWORKLOAD_PROVIDER_ID \ --location="global" \ --workload-identity-pool="POOL_ID" \ --issuer-uri="ISSUER" \ --attribute-mapping="MAPPINGS" \ --attribute-condition="CONDITIONS" \ --jwk-json-path="cluster-jwks.json"
Replace the following:
WORKLOAD_PROVIDER_ID: Enter a unique ID forthe workload identity pool provider.POOL_ID: The workload identity pool IDthat you created earlier.ISSUER: The issuer URI that you determinedearlier.MAPPINGS: A comma-separated list ofattribute mappings that you createdearlier in this guide.CONDITIONS: An optionalattribute condition that you createdearlier in this guide. Remove the parameter ifyou don't have an attribute condition.
Error connecting to the given credential's issuer.
Grant access to a Kubernetes workload
This section describes how to configure a Kubernetes workload to accessGoogle Cloud APIs by using either Workload Identity Federation directresource access or service account impersonation.
You must perform these steps once for each Kubernetes workload that needs accessto Google Cloud.
We recommend that you useWorkload Identity Federation. However,when using identity federation, certain API methods might have limitations. Fora list of limitations, seeIdentity federation: products and limitations.
If the methods that your workload uses have such limitations, you can insteaduseIAM impersonation.
Use Workload Identity Federation to grant direct resource access
In this section, you use Workload Identity Federation to grant anIAM role to a Kubernetes ServiceAccount so that it can directlyaccess Google Cloud resources.
To create a Kubernetes ServiceAccount and grant it a role, do the following:
Create a Kubernetes ServiceAccount:
kubectl create serviceaccountKSA_NAME --namespaceNAMESPACE
Replace the following:
KSA_NAME: A name of the ServiceAccount.NAMESPACE: The namespace in which to create theServiceAccount.
Grant IAM access to the Kubernetes ServiceAccount for aGoogle Cloud resource.
Following theprinciple of least privilege,we recommend that you grant only roles that are specific to the resourcesthat your application must access.
In the following example, the command grants theKubernetes Engine Cluster Viewer(
roles/container.clusterViewer) role to the ServiceAccount that youcreated. The command uses the subject that you mapped earlier in thisdocument.gcloudprojectsadd-iam-policy-bindingprojects/PROJECT_ID\--role=roles/container.clusterViewer\--member=principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/subject/MAPPED_SUBJECT\--condition=NoneReplace the following:
PROJECT_NUMBER: the numericalGoogle Cloud project number that is associated with your projectID.POOL_ID: the workload identity pool ID.MAPPED_SUBJECT: the Kubernetes ServiceAccountfrom the claim in your ID token that you mapped togoogle.subject. For example, if you mappedgoogle.subject=assertions.suband your ID token contains"sub": "system:serviceaccount:default:my-kubernetes-serviceaccount",thenMAPPED_SUBJECTissystem:serviceaccount:default:my-kubernetes-serviceaccount.
You can grant roles on any Google Cloud resource that supportsIAM allow policies. The syntax of the principal identifierdepends on the Kubernetes resource. For a list of supported identifiers, seePrincipal identifiers for Workload Identity Federation for GKE.
You can nowdeploy a workload that uses the KubernetesServiceAccount to access the Google Cloud resources to which you grantedaccess.
Alternative: Use IAM service account impersonation to grant access
To configure your Kubernetes ServiceAccount to use IAM serviceaccount impersonation, do the following:
Create a Kubernetes ServiceAccount, if you haven't already:
kubectl create serviceaccountKSA_NAME --namespaceNAMESPACE
Replace the following:
KSA_NAME: a name for the ServiceAccountNAMESPACE: the namespace in which to createthe ServiceAccount
Create an IAMservice accountthat represents the workload.
The service account doesn't need to be in the same project as the workloadidentity pool, but you must specify the project that contains the serviceaccount when referring to it.
gcloud iam service-accounts createIAM_SA_NAME \ --project=IAM_SA_PROJECT_ID
Replace the following:
IAM_SA_NAME: the name of the service accountIAM_SA_PROJECT_ID: the project ID of the serviceaccount
Grant your IAM service account accessto the specific Google Cloud resources that you want the Kubernetesworkload to access.
gcloudprojectsadd-iam-policy-bindingIAM_SA_PROJECT_ID\--member="serviceAccount:IAM_SA_NAME@IAM_SA_PROJECT_ID.iam.gserviceaccount.com"\--role="ROLE"Replace the following:
IAM_SA_PROJECT_ID: the ID of the project whereyou created your service accountIAM_SA_NAME: the name of the service accountROLE: with the name of the role—for example,roles/container.clusterViewer
Grant the Kubernetes ServiceAccount access to impersonate theIAM service account:
gcloudiamservice-accountsadd-iam-policy-binding\IAM_SA_NAME@IAM_SA_PROJECT_ID.iam.gserviceaccount.com\--member="principal://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/subject/MAPPED_SUBJECT"\--role=roles/iam.workloadIdentityUserReplace the following:
IAM_SA_NAME: the name of the service accountPROJECT_ID: the ID of the project where you run KubernetesIAM_SA_PROJECT_NUMBER: theproject numberof the project where you created your service accountPOOL_ID: the workload identity pool ID.MAPPED_SUBJECT: the Kubernetes ServiceAccountfrom the claim in your ID token that you mapped togoogle.subject. For example, if you mappedgoogle.subject=assertions.suband your ID token contains"sub": "system:serviceaccount:default:my-kubernetes-serviceaccount",thenMAPPED_SUBJECTissystem:serviceaccount:default:my-kubernetes-serviceaccount.
For information on authorizing IAM service accounts to accessGoogle Cloud APIs, seeUnderstanding service accounts.
You can nowdeploy a workload that uses the Kubernetes ServiceAccountand the IAM service account to access the Google Cloudresources to which you granted access.
Deploy the Kubernetes workload
To deploy a Kubernetes workload that can access Google Cloud resources, dothe following:
Create a credential configuration file:
gcloudiamworkload-identity-poolscreate-cred-config\projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/WORKLOAD_PROVIDER_ID\--service-account=SERVICE_ACCOUNT_EMAIL\--credential-source-file=/var/run/service-account/token\--credential-source-type=text\--sts-location=REGION\--output-file=credential-configuration.json
Replace the following:
PROJECT_NUMBER: The project number of the project that contains the workload identity poolPOOL_ID: The ID of the workload identity poolWORKLOAD_PROVIDER_ID: The ID of the workload identity pool providerSERVICE_ACCOUNT_EMAIL: Email address of the service account, if you configured your Kubernetes ServiceAccount to use IAM service account impersonation. Omit this flag if you configured your Kubernetes ServiceAccount to use direct resource access.REGION: Optional. Specify the region of theregional Security Token Service endpoints,if they are available.
The credential configuration file lets theCloud Client Libraries, thegcloud CLI, and Terraform determine the following:
- Where to obtain external credentials from
- Which workload identity pool and provider to use
- Which service account to impersonate
Import the credential configuration file as aConfigMap
kubectl create configmapCONFIGMAP_NAME \ --from-file credential-configuration.json \ --namespaceNAMESPACE
Replace the following:
CONFIGMAP_NAME: The name of the ConfigMap.NAMESPACE: The namespace in which to create the ConfigMap.
Deploy a workload and let it use the Kubernetes ServiceAccount and ConfigMap.
Create a manifest and configure as follows:
- Mount aprojected token volumeso that the workload can obtain a Kubernetes ServiceAccount tokenfrom a local file. Configure the volume so that the KubernetesServiceAccount token uses the audience expected by your workloadidentity pool provider.
- Mount the ConfigMap that contains the credential configuration fileso that the workload can access the necessary configuration for usingWorkload Identity Federation.
- Add an environment variable
GOOGLE_APPLICATION_CREDENTIALSthatcontains the path of the credential configuration file so thatworkloads can find the file.
The following is an example manifest that uses the Kubernetes ServiceAccountand ConfigMap to let the Google Cloud CLI authenticate to Google Cloud:
apiVersion:v1kind:Podmetadata:name:examplenamespace:NAMESPACEspec:containers:-name:exampleimage:google/cloud-sdk:alpinecommand:["/bin/sh","-c","gcloud auth login --cred-file $GOOGLE_APPLICATION_CREDENTIALS && gcloud auth list && sleep 600"]volumeMounts:-name:tokenmountPath:"/var/run/service-account"readOnly:true-name:workload-identity-credential-configurationmountPath:"/etc/workload-identity"readOnly:trueenv:-name:GOOGLE_APPLICATION_CREDENTIALSvalue:"/etc/workload-identity/credential-configuration.json"serviceAccountName:KSA_NAMEvolumes:-name:tokenprojected:sources:-serviceAccountToken:audience:https://iam.googleapis.com/projects/PROJECT_NUMBER/locations/global/workloadIdentityPools/POOL_ID/providers/WORKLOAD_PROVIDER_IDexpirationSeconds:3600path:token-name:workload-identity-credential-configurationconfigMap:name:CONFIGMAP_NAME
You can follow the same approach to let tools and workloads that use one of the followingclient librariesfind credentials automatically:
C++
TheGoogle Cloud Client Libraries for C++support Workload Identity Federation since versionv2.6.0.To use Workload Identity Federation, you must build the client librarieswith version 1.36.0 or later of gRPC.
Go
Client libraries for Go support Workload Identity Federation if they use versionv0.0.0-20210218202405-ba52d332ba99 or later of the
golang.org/x/oauth2module.To check which version of this module your client library uses, run thefollowing commands:
cd$GOPATH/src/cloud.google.com/gogolist-mgolang.org/x/oauth2Java
Client libraries for Java support Workload Identity Federation if they use version 0.24.0or later of the
com.google.auth:google-auth-library-oauth2-httpartifact.To check which version of this artifact your client library uses, run thefollowing Maven command in your application directory:
mvndependency:list-DincludeArtifactIds=google-auth-library-oauth2-httpNode.js
Client libraries for Node.js support Workload Identity Federation if they use version7.0.2 or later of the
google-auth-librarypackage.To check which version of this package your client library uses, run thefollowing command in your application directory:
npmlistgoogle-auth-libraryWhen you create a
GoogleAuthobject, you can specify a project ID, or you canallowGoogleAuthto find the project ID automatically. To find the project IDautomatically, the service account in the configuration file must have theBrowser role (roles/browser), or a role with equivalent permissions, on yourproject. For details, see theREADMEfor thegoogle-auth-librarypackage.Python
Client libraries for Python support Workload Identity Federation if they use version1.27.0 or later of the
google-authpackage.To check which version of this package your client library uses, run thefollowing command in the environment where the package is installed:
pipshowgoogle-authTo specify a project ID for the authentication client, you can set the
GOOGLE_CLOUD_PROJECTenvironment variable, or you can allow the client to findthe project ID automatically. To find the project ID automatically, the serviceaccount in the configuration file must have the Browser role (roles/browser),or a role with equivalent permissions, on your project. For details, see theuser guide for thegoogle-authpackage.gcloud
To authenticate using Workload Identity Federation, use the
gcloud auth logincommand:gcloud auth login --cred-file=FILEPATH.json
Replace
FILEPATHwith the path to thecredential configuration file.Support for Workload Identity Federation in gcloud CLI is available inversion 363.0.0 and later versions of the gcloud CLI.
Terraform
TheGoogle Cloud providersupports Workload Identity Federation if you use version 3.61.0 or later:
terraform { required_providers { google = { source = "hashicorp/google" version = "~> 3.61.0" } }}bq
To authenticate using Workload Identity Federation, use the
gcloud auth logincommand, as follows:gcloud auth login --cred-file=FILEPATH.json
Replace
FILEPATHwith the path to thecredential configuration file.Support for Workload Identity Federation in bq is available inversion 390.0.0 and later versions of the gcloud CLI.
Optionally, verify that authentication works correctly by running the following command:
kubectl exec example --namespaceNAMESPACE -- gcloud auth print-access-token
What's next
- Read more aboutWorkload Identity Federation.
- Learn aboutbest practices for using Workload Identity Federation.
- See how you canmanage workload identity pools and providers.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-15 UTC.