You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export IDENTITY_TENANT=$(az aks show --name $clusterName --resource-group $resourceGroupName --query aadProfile.tenantId -o tsv)
45
+
export IDENTITY_TENANT=$(az aks show --name $clusterName --resource-group $resourceGroupName --query identity.tenantId -o tsv)
46
46
```
47
47
48
48
2. You need to set an access policy that grants the workload identity permission to access the Key Vault secrets, access keys, and certificates. The rights are assigned using the `az keyvault set-policy` command shown below.
@@ -120,10 +120,13 @@ Azure AD workload identity (preview) is supported on both Windows and Linux clus
120
120
EOF
121
121
```
122
122
123
+
> [!NOTE]
124
+
> If you use `objectAlias` instead of `objectName`, make sure to update the YAML script.
125
+
123
126
6. Deploy a sample pod. Notice the service account reference in the pod definition:
0 commit comments