Add a Microsoft Azure connector
Use the Microsoft Azure connector to connect Harness to your Azure accounts and services. With this connector, Harness pipelines can pull artifacts from Azure Container Registry (ACR), provision infrastructure with Azure Resource Manager (ARM) and Azure Blueprints, and deploy applications to Azure Kubernetes Service (AKS), Azure Web Apps, Azure App Service Environments, and virtual machines using SSH or WinRM.
Use the Azure Repos connector to connect to Azure SCM repositories.
If you use Harness Cloud Cost Management (CCM), go to Set up Cloud Cost Management for Azure to configure the Azure connector for CCM.
What will you learn in this topic?
- How to install the kubelogin plugin on a delegate for AKS authentication using Kubernetes 1.22 and later.
- How to configure roles and permissions for ACR, AKS, Azure Web Apps, ARM, and Blueprints.
- How to add an Azure connector at the account, org, or project scope.
- How to configure credentials using Service Principal, OIDC authentication, or inherited delegate credentials.
- How to select a connectivity mode and complete the connector setup.
Before you begin
- Azure subscription: Owner or Contributor access on the subscription or resource group where you want Harness to operate.
- Microsoft Entra ID: Permission to create App Registrations or Managed Identities and assign roles. Go to Create a Microsoft Entra application and service principal to understand the required setup.
- Harness delegate: A running Harness delegate connected to your Azure environment for delegate-based connectivity. Go to Delegate installation overview to install one.
- Harness account ID (OIDC only): Navigate to Account Settings in Harness to find your account ID.
Auth Provider API and TokenRequest API options
Harness supports both the Auth Provider API and the TokenRequest API for AKS authentication.
Auth Provider API vs. TokenRequest API
In Kubernetes 1.22, the Auth Provider API was deprecated and replaced with the TokenRequest API. The TokenRequest API lets client libraries and tools request an authentication token from the Kubernetes API server dynamically, based on audience, scopes, and other parameters.
The key advantages of the TokenRequest API are finer-grained control over authentication and easier integration with external identity providers such as OAuth 2.0 providers.
To select which API to use:
- Auth Provider API: the current default. You do not have to change the default settings of Harness connectors or the Harness delegates you use.
- TokenRequest API: you must install the provider-specific plugin on the Harness delegate to use the TokenRequest API introduced in Kubernetes 1.22.
Install the kubelogin client-go credential (exec) plugin on the delegate
When using the Harness Azure connector with Kubernetes version 1.22 or later, you can use the kubelogin client-go credential plugin to authenticate to an AKS cluster.
The Azure connector supports four authentication types. Install the following dependencies on the Harness delegates you use, or Harness will fall back to the Auth Provider API format.
- Secret (
SERVICE_PRINCIPAL_SECRET): kubelogin binary. - Certificate (
SERVICE_PRINCIPAL_CERT): kubelogin binary and Azure CLI (required because kubelogin does not support PEM format certificates). - System Assigned Managed Identity (
MANAGED_IDENTITY_SYSTEM_ASSIGNED): kubelogin binary. - User Assigned Managed Identity (
MANAGED_IDENTITY_USER_ASSIGNED): kubelogin binary.
Secret and Certificate are available when you select Specify credentials here. System Assigned Managed Identity and User Assigned Managed Identity are available when you select Use the credentials of a specific Harness Delegate.
Perform the following steps to install kubelogin on the delegate using an immutable delegate image and INIT_SCRIPT:
RHEL 7
# Install dependencies
microdnf install --nodocs openssl util-linux unzip python2 && microdnf clean all
# Download kubelogin
curl https://github.com/Azure/kubelogin/releases/download/v0.0.27/kubelogin-linux-amd64.zip -L -o kubelogin.zip
unzip kubelogin.zip
chmod 755 /opt/harness-delegate/bin/linux_amd64/kubelogin
# Add the binary to PATH
mv ./bin/linux_amd64/kubelogin /usr/local/bin
# If the AKS cloud provider auth type is Certificate, install azure-cli
# because kubelogin does not support PEM format
rpm --import https://packages.microsoft.com/keys/microsoft.asc
echo -e "[azure-cli]
name=Azure CLI
baseurl=https://packages.microsoft.com/yumrepos/azure-cli
enabled=1
gpgcheck=1
gpgkey=https://packages.microsoft.com/keys/microsoft.asc" | tee /etc/yum.repos.d/azure-cli.repo
microdnf install azure-cli
Ubuntu
# Download kubelogin
curl https://github.com/Azure/kubelogin/releases/download/v0.0.27/kubelogin-linux-amd64.zip -L -o kubelogin.zip
unzip kubelogin.zip
chmod 755 /opt/harness-delegate/bin/linux_amd64/kubelogin
# Add the binary to PATH
mv ./bin/linux_amd64/kubelogin /usr/local/bin
# If the AKS cloud provider auth type is Certificate, install azure-cli
curl -sL https://aka.ms/InstallAzureCLIDeb | bash
Go to kubelogin releases on Azure and Delegate installation overview for further details.
Roles, permissions, and cluster requirements
This section covers the minimum Azure Role-Based Access Control (RBAC) roles and cluster configuration required for each Azure service. This section assumes you are familiar with Azure RBAC. Go to Assign Azure roles using the Azure portal for a refresher.
For security reasons, Harness uses an application object and service principal rather than a user identity. Go to Create a Microsoft Entra application and service principal that can access resources for details.

ACR role requirements
The Azure connector you use to connect Harness to ACR must have the Reader role at minimum. You can also use a custom role that includes the Reader permissions.
The following tabs describe the Reader role requirements and a sample custom role definition.
- Reader role
- Custom role
Assign the Reader role at the Subscription or Resource Group level for the Application (client) ID used in the Azure connector. The application must have permission to list all container registries.

- Do not assign the Reader role in a different IAM section of Azure.
- Do not assign only the AcrPull role instead of Reader. AcrPull grants access to a specific registry, but Harness requires the Reader role to list all registries.
The following permissions are required for any Service Principal or Managed Identity user, regardless of whether you use Kubernetes RBAC or Azure RBAC:
Microsoft.ContainerRegistry/registries/readMicrosoft.ContainerRegistry/registries/builds/readMicrosoft.ContainerRegistry/registries/metadata/readMicrosoft.ContainerRegistry/registries/pull/readMicrosoft.ContainerService/managedClusters/readMicrosoft.ContainerService/managedClusters/listClusterUserCredential/actionMicrosoft.Resource/subscriptions/resourceGroup/read
For Helm deployments, Helm version 3.2.0 or later is required and the HELM_VERSION_3_8_0 feature flag must be enabled.
You cannot use Pod Assigned Managed Identity and System Assigned Managed Identity on the same cluster.
The following JSON creates a custom role with the required permissions. Replace xxxx with your role name, subscription ID, and resource group ID.
{
"id": "/subscriptions/xxxx/providers/Microsoft.Authorization/roleDefinitions/xxxx",
"properties": {
"roleName": "xxxx",
"description": "",
"assignableScopes": [
"/subscriptions/xxxx/resourceGroups/xxxx"
],
"permissions": [
{
"actions": [],
"notActions": [],
"dataActions": [
"Microsoft.ContainerService/managedClusters/configmaps/read",
"Microsoft.ContainerService/managedClusters/configmaps/write",
"Microsoft.ContainerService/managedClusters/configmaps/delete",
"Microsoft.ContainerService/managedClusters/secrets/read",
"Microsoft.ContainerService/managedClusters/secrets/write",
"Microsoft.ContainerService/managedClusters/secrets/delete",
"Microsoft.ContainerService/managedClusters/apps/deployments/read",
"Microsoft.ContainerService/managedClusters/apps/deployments/write",
"Microsoft.ContainerService/managedClusters/apps/deployments/delete",
"Microsoft.ContainerService/managedClusters/events/read",
"Microsoft.ContainerService/managedClusters/events/write",
"Microsoft.ContainerService/managedClusters/events/delete",
"Microsoft.ContainerService/managedClusters/namespaces/read",
"Microsoft.ContainerService/managedClusters/nodes/read",
"Microsoft.ContainerService/managedClusters/pods/read",
"Microsoft.ContainerService/managedClusters/pods/write",
"Microsoft.ContainerService/managedClusters/pods/delete",
"Microsoft.ContainerService/managedClusters/services/read",
"Microsoft.ContainerService/managedClusters/services/write",
"Microsoft.ContainerService/managedClusters/services/delete",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/read",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/write",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/delete",
"Microsoft.ContainerService/managedClusters/apps/replicasets/read",
"Microsoft.ContainerService/managedClusters/apps/replicasets/write",
"Microsoft.ContainerService/managedClusters/apps/replicasets/delete"
],
"notDataActions": []
}
]
}
}
Harness supports up to 500 images from an ACR repo. If you do not see all your images, you may have exceeded this limit due to an Azure API restriction. If you connect to ACR via the platform-agnostic Docker connector, the limit is 100.
Azure Web App role requirements
The Azure connector used to connect to Azure Web Apps with Service Principal or Managed Identity credentials must have the Contributor role at minimum. You can also use a custom role that includes the Contributor permissions.
The following tabs describe the Contributor role permissions and a sample custom role definition.
- Contributor permissions
- Custom role
The following are the Azure RBAC permissions used for System Assigned Managed Identity to perform Azure Web App deployments for container and non-container artifacts:
[
"microsoft.web/sites/slots/deployments/read",
"Microsoft.Web/sites/Read",
"Microsoft.Web/sites/config/Read",
"Microsoft.Web/sites/slots/config/Read",
"microsoft.web/sites/slots/config/appsettings/read",
"Microsoft.Web/sites/slots/*/Read",
"Microsoft.Web/sites/slots/config/list/Action",
"Microsoft.Web/sites/slots/stop/Action",
"Microsoft.Web/sites/slots/start/Action",
"Microsoft.Web/sites/slots/config/Write",
"Microsoft.Web/sites/slots/Write",
"microsoft.web/sites/slots/containerlogs/action",
"Microsoft.Web/sites/config/Write",
"Microsoft.Web/sites/slots/slotsswap/Action",
"Microsoft.Web/sites/config/list/Action",
"Microsoft.Web/sites/start/Action",
"Microsoft.Web/sites/stop/Action",
"Microsoft.Web/sites/Write",
"microsoft.web/sites/containerlogs/action",
"Microsoft.Web/sites/publish/Action",
"Microsoft.Web/sites/slots/publish/Action"
]
The following permissions are required for any Service Principal or Managed Identity user, regardless of whether you use Kubernetes RBAC or Azure RBAC:
Microsoft.ContainerRegistry/registries/readMicrosoft.ContainerRegistry/registries/builds/readMicrosoft.ContainerRegistry/registries/metadata/readMicrosoft.ContainerRegistry/registries/pull/readMicrosoft.ContainerService/managedClusters/readMicrosoft.ContainerService/managedClusters/listClusterUserCredential/actionMicrosoft.Resource/subscriptions/resourceGroup/read
For Helm deployments, Helm version 3.2.0 or later is required and the HELM_VERSION_3_8_0 feature flag must be enabled.
You cannot use Pod Assigned Managed Identity and System Assigned Managed Identity on the same cluster.
Replace xxxx with your role name, subscription ID, and resource group ID.
{
"id": "/subscriptions/xxxx/providers/Microsoft.Authorization/roleDefinitions/xxxx",
"properties": {
"roleName": "xxxx",
"description": "",
"assignableScopes": [
"/subscriptions/xxxx/resourceGroups/xxxx"
],
"permissions": [
{
"actions": [],
"notActions": [],
"dataActions": [
"Microsoft.ContainerService/managedClusters/configmaps/read",
"Microsoft.ContainerService/managedClusters/configmaps/write",
"Microsoft.ContainerService/managedClusters/configmaps/delete",
"Microsoft.ContainerService/managedClusters/secrets/read",
"Microsoft.ContainerService/managedClusters/secrets/write",
"Microsoft.ContainerService/managedClusters/secrets/delete",
"Microsoft.ContainerService/managedClusters/apps/deployments/read",
"Microsoft.ContainerService/managedClusters/apps/deployments/write",
"Microsoft.ContainerService/managedClusters/apps/deployments/delete",
"Microsoft.ContainerService/managedClusters/events/read",
"Microsoft.ContainerService/managedClusters/events/write",
"Microsoft.ContainerService/managedClusters/events/delete",
"Microsoft.ContainerService/managedClusters/namespaces/read",
"Microsoft.ContainerService/managedClusters/nodes/read",
"Microsoft.ContainerService/managedClusters/pods/read",
"Microsoft.ContainerService/managedClusters/pods/write",
"Microsoft.ContainerService/managedClusters/pods/delete",
"Microsoft.ContainerService/managedClusters/services/read",
"Microsoft.ContainerService/managedClusters/services/write",
"Microsoft.ContainerService/managedClusters/services/delete",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/read",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/write",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/delete",
"Microsoft.ContainerService/managedClusters/apps/replicasets/read",
"Microsoft.ContainerService/managedClusters/apps/replicasets/write",
"Microsoft.ContainerService/managedClusters/apps/replicasets/delete"
],
"notDataActions": []
}
]
}
}
Connect Harness to Azure Kubernetes Service (AKS)
There are three options for connecting Harness to an AKS cluster. Each option differs in the type of credentials required and the delegate placement.
- Platform-agnostic Kubernetes cluster connector: install a Kubernetes delegate in the target AKS cluster and use the delegate's credentials. No Azure Service Principal or Managed Identity credentials are required.
- Microsoft Azure connector with a Kubernetes delegate: install a Kubernetes delegate in the AKS cluster. Provide the Azure environment and, for User Assigned Managed Identity, the Application (client) ID. You can create a connector referencing a non-existent delegate; Harness allows this so you can replace a delegate with one of the same name or tag.
- Microsoft Azure connector with Service Principal or Managed Identity credentials: assign the Owner role or an equivalent custom role as described in AKS role requirements.
AKS cluster setup requirements
The following AKS cluster configuration is required to use the Azure connector:
- AKS managed Azure Active Directory (AAD): enabled or disabled.
- Kubernetes RBAC: enabled.
- Azure RBAC: enabled or disabled.
Go to the Deployments (CD) section of the Kubernetes cluster connector settings reference for full details.
AKS role requirements
If you use the Microsoft Azure connector to connect to AKS with Service Principal or Managed Identity credentials, assign the Owner role or a custom role that includes the Owner permissions.
The following tabs provide example role definitions for AKS.
- Custom role
- Kubernetes RBAC example
- Azure RBAC example
The following permissions are required for any Service Principal or Managed Identity user, regardless of whether you use Kubernetes RBAC or Azure RBAC. Replace xxxx with your role name, subscription ID, and resource group ID.
{
"id": "/subscriptions/xxxx/providers/Microsoft.Authorization/roleDefinitions/xxxx",
"properties": {
"roleName": "xxxx",
"description": "",
"assignableScopes": [
"/subscriptions/xxxx/resourceGroups/xxxx"
],
"permissions": [
{
"actions": [],
"notActions": [],
"dataActions": [
"Microsoft.ContainerService/managedClusters/configmaps/read",
"Microsoft.ContainerService/managedClusters/configmaps/write",
"Microsoft.ContainerService/managedClusters/configmaps/delete",
"Microsoft.ContainerService/managedClusters/secrets/read",
"Microsoft.ContainerService/managedClusters/secrets/write",
"Microsoft.ContainerService/managedClusters/secrets/delete",
"Microsoft.ContainerService/managedClusters/apps/deployments/read",
"Microsoft.ContainerService/managedClusters/apps/deployments/write",
"Microsoft.ContainerService/managedClusters/apps/deployments/delete",
"Microsoft.ContainerService/managedClusters/events/read",
"Microsoft.ContainerService/managedClusters/events/write",
"Microsoft.ContainerService/managedClusters/events/delete",
"Microsoft.ContainerService/managedClusters/namespaces/read",
"Microsoft.ContainerService/managedClusters/nodes/read",
"Microsoft.ContainerService/managedClusters/pods/read",
"Microsoft.ContainerService/managedClusters/pods/write",
"Microsoft.ContainerService/managedClusters/pods/delete",
"Microsoft.ContainerService/managedClusters/services/read",
"Microsoft.ContainerService/managedClusters/services/write",
"Microsoft.ContainerService/managedClusters/services/delete",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/read",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/write",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/delete",
"Microsoft.ContainerService/managedClusters/apps/replicasets/read",
"Microsoft.ContainerService/managedClusters/apps/replicasets/write",
"Microsoft.ContainerService/managedClusters/apps/replicasets/delete"
],
"notDataActions": []
}
]
}
}
The following is an example of Kubernetes RBAC permissions for System Assigned Managed Identity.
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: cdp-qa-deployer-role
namespace: cdp-qa-app
rules:
- apiGroups: ["", "apps"]
resources: ["pods", "configmaps", "deployments", "secrets", "events", "services", "replicasets", "deployments/scale", "namespaces", "resourcequotas", "limitranges"]
verbs: ["get", "watch", "list", "create", "update", "patch", "delete"]
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: cdp-qa-deployer-role-binding
namespace: cdp-qa-app
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: cdp-qa-deployer-role
subjects:
- kind: Group
namespace: cdp-qa-app
name: <AD group ID to which the SP and MSI users are assigned>
The following is an example of Azure RBAC permissions for System Assigned Managed Identity. Replace xxxx with your subscription ID and resource group ID.
{
"id": "/subscriptions/xxxx/providers/Microsoft.Authorization/roleDefinitions/xxxx",
"properties": {
"roleName": "HarnessSysMSIRole",
"description": "",
"assignableScopes": [
"/subscriptions/xxxx/resourceGroups/xxxx"
],
"permissions": [
{
"actions": [],
"notActions": [],
"dataActions": [
"Microsoft.ContainerService/managedClusters/configmaps/read",
"Microsoft.ContainerService/managedClusters/configmaps/write",
"Microsoft.ContainerService/managedClusters/configmaps/delete",
"Microsoft.ContainerService/managedClusters/secrets/read",
"Microsoft.ContainerService/managedClusters/secrets/write",
"Microsoft.ContainerService/managedClusters/secrets/delete",
"Microsoft.ContainerService/managedClusters/apps/deployments/read",
"Microsoft.ContainerService/managedClusters/apps/deployments/write",
"Microsoft.ContainerService/managedClusters/apps/deployments/delete",
"Microsoft.ContainerService/managedClusters/events/read",
"Microsoft.ContainerService/managedClusters/events/write",
"Microsoft.ContainerService/managedClusters/events/delete",
"Microsoft.ContainerService/managedClusters/namespaces/read",
"Microsoft.ContainerService/managedClusters/nodes/read",
"Microsoft.ContainerService/managedClusters/pods/read",
"Microsoft.ContainerService/managedClusters/pods/write",
"Microsoft.ContainerService/managedClusters/pods/delete",
"Microsoft.ContainerService/managedClusters/services/read",
"Microsoft.ContainerService/managedClusters/services/write",
"Microsoft.ContainerService/managedClusters/services/delete",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/read",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/write",
"Microsoft.ContainerService/managedClusters/apps/statefulsets/delete",
"Microsoft.ContainerService/managedClusters/apps/replicasets/read",
"Microsoft.ContainerService/managedClusters/apps/replicasets/write",
"Microsoft.ContainerService/managedClusters/apps/replicasets/delete"
],
"notDataActions": []
}
]
}
}
Azure Resource Management (ARM) role requirements
The roles required for ARM depend on the scope type of your ARM template:
- Resource group: requires the
Contributorrole. - Subscription: requires the
Contributorrole. - Management group: requires the
Contributorrole. - Tenant: requires the
ContributororOwnerrole. Creating a Tenant requiresContributor, but creating role assignments requiresOwner. - Key Vault access: to enable access to Key Vaults from ARM templates, select the Azure Resource Manager for template deployment option in the Key Vault Access Policy.

The Azure roles provided in the connector must allow Harness to provision the Azure resources in your ARM templates. For example, to create a policy assignment, the Resource Policy Contributor role is required.
Azure Blueprints role requirements
Go to Permissions in Azure Blueprints for the full list of roles required to create and delete Blueprints.
The Azure roles required on the service principal depend on the scope of your Blueprint definition.
Management scope:
- System-assigned managed identity: Contributor role at the management group scope where Blueprint definitions are created and published; Owner role at the subscription scope where the assignment is done.
- User-assigned managed identity: Contributor role at the management group scope where Blueprint definitions are created and published. Harness does not manage the lifecycle of user-managed identities; you are responsible for that.
Subscription scope:
- System-assigned managed identity: Owner role at the subscription scope.
- User-assigned managed identity: Contributor role to create and publish the Blueprint definition. Harness does not manage the lifecycle of user-managed identities; you are responsible for that.
Add an Azure connector
You can add Azure connectors at the account, org, or project level at any time, or while setting up pipelines.
Perform the following steps to add an Azure connector:
- Navigate to Project Setup (or Account Settings or Organization Settings), then select Connectors.
- Select New Connector, then under Cloud Providers, select Azure Cloud Provider.
- Enter a Name. Harness automatically creates an Id based on the name using the Entity Identifier format. You can edit the ID before saving; once saved, the ID is immutable.
- Optionally, add a description and tags.
- Select Continue to configure credentials.
Configure credentials
The Azure connector supports three credential methods. Select the method that matches your Azure setup.
- Specify credentials here: uses an App Registration with a client secret or certificate.
- OIDC Authentication: uses short-lived tokens via workload identity federation; no secrets are stored in Harness.
- Inherit credentials from the delegate: the connector inherits credentials from the Harness delegate running in your Azure subscription or AKS cluster.
- Specify Credentials
- OIDC Authentication
- Inherit from Delegate
Specify credentials
Select Specify credentials here to authenticate using an Azure App Registration with a client secret or certificate. Provide the App Registration's Application (client) ID and Directory (tenant) ID.

Perform the following steps to configure credentials:
-
In Microsoft Azure, go to the App Registration Overview page and note the Application (client) ID and Directory (tenant) ID.
- Application (client) ID: the ID of the App Registration Harness will use. Assign this App Registration a role in your Azure subscription to grant access. Go to Register an application with the Microsoft identity platform and Assign the application to a role for steps.
- Directory (tenant) ID: the ID for the Microsoft Entra ID tenant that contains your app. Go to Get tenant ID for steps.

-
In the Harness Azure connector settings, select the Environment: Azure Global or US Government.
-
Enter the Application (client) ID in the Application Id field.
-
Enter the Directory (tenant) ID in the Tenant Id field.
-
For Authentication, select Secret or Certificate, then select or create a Harness Text Secret or Harness File Secret.
Harness supports PEM files only. PFX files are not supported.
To create a new client secret, go to App Registrations in Microsoft Entra ID, select your app, select Certificates & secrets, then select New client secret. Go to Creating a new application secret for steps.

-
Select Continue.
OIDC authentication
Select OIDC Authentication to connect Harness to Azure without storing client secrets or certificates. Harness acts as an identity provider and issues short-lived JSON Web Tokens (JWTs) that Azure Active Directory (AD) validates directly using workload identity federation. Supported services: ACR, AKS, and Azure Web Apps. Go to Workload identity federation in the Microsoft documentation to understand the underlying Azure mechanism.
Azure OIDC authentication is behind the feature flag CDS_AZURE_OIDC_AUTHENTICATION. Contact Harness Support to enable it on your account.
How OIDC authentication works
When a CD pipeline runs a stage that uses an Azure connector with OIDC authentication:
- Harness generates a short-lived ID token (valid for 60 minutes) for the pipeline execution.
- The delegate presents this token to Azure AD.
- Azure AD validates the token against the federated credential you configured on the App Registration or Managed Identity.
- Azure AD issues an access token that grants access to Azure resources based on the RBAC roles you assigned.
Issuer URL
The Harness OIDC issuer URL format depends on the environment cluster where your Harness account resides. To find your cluster, navigate to Account Settings, then select Overview. The cluster hosting your account is displayed on the account details page.
The issuer URL format is:
https://<HOSTNAME>/ng/api/oidc/account/<YOUR_HARNESS_ACCOUNT_ID>
Use the hostname that matches your cluster, even if a vanity URL is set up for your account:
| Cluster | Hostname |
|---|---|
| Prod1/Prod2 | app.harness.io |
| Prod3 | app3.harness.io |
| Prod0/Prod4 | accounts.harness.io |
| EU clusters | accounts.eu.harness.io |
To find your Harness Account ID, navigate to Account Settings, then select Overview. Your account ID is also visible in your browser URL: app.harness.io/ng/account/<YOUR_ACCOUNT_ID>/....
You can test connectivity to the issuer URL by running:
curl https://<HOSTNAME>/ng/api/oidc/account/<YOUR_HARNESS_ACCOUNT_ID>/.well-known/openid-configuration
This should return valid information from the endpoint, including the issuer, JWKS URI, and supported claims.
Subject identifier
The subject claim in the Harness-issued token uses this format:
Provider:Harness:Account:<YOUR_HARNESS_ACCOUNT_ID>
Enter this exact value as the Subject identifier when configuring federated credentials in Azure. Azure uses it to match the incoming token to the correct identity.
Step 1: Configure federated credentials in Azure
You can configure OIDC using an App Registration (Service Principal) or a User-Assigned Managed Identity. Use App Registration when you need a service principal with explicit RBAC role assignments across one or more subscriptions. Use User-Assigned Managed Identity when the delegate runs inside an AKS cluster and you want tighter integration with Azure's managed identity service.
- App Registration
- User-Assigned Managed Identity
Perform the following steps to add a federated credential to an App Registration:
-
In the Azure portal, navigate to Microsoft Entra ID, then select App registrations.
-
Select New registration, enter a name (for example,
harness-oidc), and select Register. -
On the Overview page, note the Application (client) ID and Directory (tenant) ID.

-
Select Certificates & secrets, then select the Federated credentials tab.
-
Select Add credential, then for Federated credential scenario, select Other issuer.
-
Enter the following values:
Field Value Issuer https://<HOSTNAME>/ng/api/oidc/account/<YOUR_HARNESS_ACCOUNT_ID>(Replace<HOSTNAME>with your cluster hostname from the Issuer URL table)Subject identifier Provider:Harness:Account:<YOUR_HARNESS_ACCOUNT_ID>Audience api://AzureADTokenExchangeName A descriptive name, for example harness-pipeline
-
Select Add.
Go to Configure an app to trust an external identity provider in the Microsoft documentation for additional configuration options.
To add the federated credential using the Azure CLI instead, run the following command:
az ad app federated-credential create \
--id <APPLICATION_ID or OBJECT_ID> \
--parameters @federated-credential.json
Where federated-credential.json contains:
{
"name": "harness-pipeline",
"issuer": "https://<HOSTNAME>/ng/api/oidc/account/<YOUR_HARNESS_ACCOUNT_ID>",
"subject": "Provider:Harness:Account:<YOUR_HARNESS_ACCOUNT_ID>",
"audiences": ["api://AzureADTokenExchange"]
}
Replace <HOSTNAME> with your cluster hostname from the Issuer URL table.
Perform the following steps to add a federated credential to a User-Assigned Managed Identity:
-
In the Azure portal, navigate to Managed Identities.
-
Select Create, choose your subscription, resource group, and region, enter a name, and select Review + create.

-
On the managed identity Overview page, note the Client ID.
-
Navigate back to Managed Identities, select the identity you created, then select Federated credentials under Settings.
-
Select Add credential, then enter the following values:
Field Value Federated credential scenario Other issuer Issuer https://<HOSTNAME>/ng/api/oidc/account/<YOUR_HARNESS_ACCOUNT_ID>(Replace<HOSTNAME>with your cluster hostname from the Issuer URL table)Subject identifier Provider:Harness:Account:<YOUR_HARNESS_ACCOUNT_ID>Audience api://AzureADTokenExchangeName A descriptive name, for example harness-pipeline
-
Select Add.
Go to Configure a user-assigned managed identity to trust an external identity provider in the Microsoft documentation for additional configuration options.
To add the federated credential using the Azure CLI instead, run the following command:
az identity federated-credential create \
--name harness-pipeline \
--identity-name <MANAGED_IDENTITY_NAME> \
--resource-group <RESOURCE_GROUP_NAME> \
--issuer "https://<HOSTNAME>/ng/api/oidc/account/<YOUR_HARNESS_ACCOUNT_ID>" \
--subject "Provider:Harness:Account:<YOUR_HARNESS_ACCOUNT_ID>" \
--audiences "api://AzureADTokenExchange"
# Replace <HOSTNAME> with your cluster hostname (see Issuer URL section above)
Assign Azure RBAC roles
Assign the App Registration or Managed Identity the minimum role required for each Azure service you intend to use with this connector:
| Service | Minimum role | Assign at scope |
|---|---|---|
| Azure Container Registry (ACR) | Reader | Subscription or Resource Group |
| Azure Kubernetes Service (AKS) | Owner or custom equivalent | Subscription or Resource Group |
| Azure Web Apps | Contributor | Subscription or Resource Group |
Go to Roles, permissions, and cluster requirements for the full role details and custom role JSON examples.
Step 2: Configure the OIDC connector in Harness
After completing the Azure setup above, return to the Details screen in the Harness connector wizard (the screen where you selected OIDC authentication).

Perform the following steps to complete the configuration:
- Select the Environment: Azure Global or US Government.
- Enter the Application (client) ID of the App Registration or User-Assigned Managed Identity in the Application Id field.
- Enter the Directory (tenant) ID in the Tenant Id field.
- Optionally, enter the Subscription ID.
- Leave Audience as
api://AzureADTokenExchangeunless you configured a custom audience in Azure. - Select Continue.
OIDC authentication requires Connect through a Harness Delegate as the connectivity mode. Connect through Harness Platform is not supported with OIDC.
YAML reference
connector:
name: azure-oidc # Replace with your connector name
identifier: azure_oidc # Replace with your connector identifier
type: Azure
spec:
environment: AZURE
credential:
type: OidcAuthentication
spec:
tenantId: <YOUR_TENANT_ID> # Replace with your Directory (tenant) ID
applicationId: <YOUR_APPLICATION_ID> # Replace with your Application (client) ID
audience: api://AzureADTokenExchange
azureEnvironmentType: AZURE
delegateSelectors:
- <YOUR_DELEGATE_SELECTOR> # Replace with your delegate tag
executeOnDelegate: true
Inherit from delegate
Select Use the credentials of a specific Harness Delegate to allow the connector to inherit authentication credentials from a Harness delegate running in your Azure subscription or AKS cluster. This option is useful when the delegate itself has the appropriate Managed Identity or service account permissions.
Perform the following steps to configure inherited credentials:
-
For Environment, select Azure Global or US Government.
-
For Authentication, select System Assigned Managed Identity or User Assigned Managed Identity.
System Assigned Managed Identity uses the AKS cluster's predefined Kubelet Managed Identity. The Control plane AKS Managed Identity (named
<AKSName>) must have the Reader permission on the AKS cluster itself. If used for image storage, the Kubelet Managed Identity (named<AKSName>-agentpool) must have the acrPull permission on ACR.Go to Use managed identities in Azure Kubernetes Service and How to use managed identities with Azure Container Instances for further details.

-
If you selected User Assigned Managed Identity, enter the Managed Identity's Client Id from your Azure Managed Identities. You can also use a Pod Assigned Managed Identity.

-
Select Continue.
Select connectivity mode
The connectivity mode determines how Harness communicates with Azure. Perform the following steps to complete the connectivity configuration:
-
Select how you want Harness to connect to Azure:
- Connect through Harness Platform: direct, secure communication between Harness and Azure. This mode is required for Harness Cloud build infrastructure. Not available with OIDC authentication.
- Connect through a Harness Delegate: Harness communicates with Azure through a Harness delegate in your Azure subscription or AKS cluster. Required when using inherited delegate credentials or OIDC authentication.
-
If connecting through a Harness delegate, select one of the following:
- Use any available Delegate: Harness selects an available delegate at runtime.
- Only use Delegates with all of the following tags: use tags to target one or more specific delegates. You can also install a new delegate at this time.
-
Select Save and Continue to run the connection test. If the test succeeds, select Finish. The connection test confirms that your authentication and delegate selections are valid.
If the connection test fails, confirm that your delegate is running and that your credentials are valid. For example, check that the client secret has not expired in your App Registration.
Use ${HARNESS_KUBE_CONFIG_PATH} with Azure
The Harness expression ${HARNESS_KUBE_CONFIG_PATH} resolves to the path of a Harness-generated kubeconfig file containing the credentials you provided to the connector.
You can use these credentials with kubectl commands by exporting the expression value to the KUBECONFIG environment variable. For example, add the following to a Harness Shell Script step:
export KUBECONFIG=${HARNESS_KUBE_CONFIG_PATH} kubectl get pods -n <namespace>
Go to Select delegates with selectors to run steps on a specific delegate.
Note the following for Azure deployments:
- If the Azure connector uses Azure Managed Identity for authentication, the Shell Script step must use a Delegate Selector for a delegate running in AKS.
- If the Azure connector uses Azure Service Principal for authentication, the Shell Script step can use any delegate.
Next steps
You have configured the Microsoft Azure connector. Continue your learning journey with the following:
- Azure ACR to AKS CD quickstart: deploy a containerized application from ACR to AKS using a CD pipeline.
- Kubernetes CD quickstart: deploy to Kubernetes using the platform-agnostic Kubernetes cluster connector.
- Azure OIDC token plugin for CI: use OIDC to authenticate with Azure services in Harness CI pipelines.
- Harness key concepts: understand the core Harness platform concepts.
- CD pipeline basics: understand the structure of a Harness CD pipeline.