Using workload identity
You can associate an IAM role with a Kubernetes Service Account (KSA). The KSA that will be used by env zero is thedefault KSA under the env0-agent namespace.
You’ll need to follow the Azure guide - Deploy and configure workload identity on an Azure Kubernetes Service (AKS) cluster . The SERVICE_ACCOUNT_NAMESPACE will be env0-agent and the SERVICE_ACCOUNT_NAME will be default.
If you override these parameters in your installation, please make sure to use the correct values, i.e. pass the correct name of the service account to deploymentJobServiceAccountName within the agent’s helm values.
Now, in order for the pods to use the identity, they should be labeled with azure.workload.identity/use: "true". To achieve this, you need to add into the podAdditionalLabels field of your agent’s helm values those field and value.
e.g.
values.customer.yaml
Configuring Terraform Provider to use an AKS workload identity
Follow this official azurerm provider guide - terraform registry documentation.Configuring Azure Backend to use an AKS workload identity
When configuring the Azure Backend, you need to make sure that the Client ID, Tenant ID, and OIDC are configured. You have to make sure to have the backend is configured as using OIDC, and with the OIDC token taken from theAZURE_FEDERATED_TOKEN_FILE
The are a couple of ways to do that:
- In the backend configuration itself, make sure to set the following values:
- Use environment variables to set
ARM_CLIENT_IDto the client ID,ARM_TENANT_IDto the tenant ID,ARM_USE_OIDCto true, andARM_OIDC_TOKEN_FILE_PATHto the value ofAZURE_FEDERATED_TOKEN_FILE(usually “/var/run/secrets/azure/tokens/azure-identity-token”)
Access Key Vault secrets
If accessing sensitive values stored in Azure Key Vault is required during your deployments, you should also accomplish this optional step from the AKS guide - Grant permissions to access Azure Key VaultVerifying the cluster is configured properly
Once the cluster is configured for using the workload identity, you can run this command from a pod on it to validate all the correct parameters are exported correctly:az login --service-principal -u $AZURE_CLIENT_ID -t $AZURE_TENANT_ID --federated-token $(cat $AZURE_FEDERATED_TOKEN_FILE).
The pod will need the correct labels for the namespace, service account, and azure.workload.identity/use: "true".
If the command ran without error, you may also check the Key Vault access with the following command az keyvault secret list --vault-name <YOUR VALUT NAME>