From 11e8ebdaf3ae159fa6a5f98e7b623567baab6ddb Mon Sep 17 00:00:00 2001 From: Richard Burrs <29219886+rburrs@users.noreply.github.com> Date: Tue, 25 Feb 2025 13:59:27 -0500 Subject: [PATCH] Update workload-identity-deploy-cluster.md $RANDOM_ID does not append a random integer at the end of myIdentity. --- articles/aks/workload-identity-deploy-cluster.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/articles/aks/workload-identity-deploy-cluster.md b/articles/aks/workload-identity-deploy-cluster.md index 40de0e30e..7ed2e860f 100644 --- a/articles/aks/workload-identity-deploy-cluster.md +++ b/articles/aks/workload-identity-deploy-cluster.md @@ -110,7 +110,7 @@ Call the [az identity create][az-identity-create] command to create a managed id ```azurecli-interactive export SUBSCRIPTION="$(az account show --query id --output tsv)" -export USER_ASSIGNED_IDENTITY_NAME="myIdentity$RANDOM_ID" +export USER_ASSIGNED_IDENTITY_NAME="myIdentity$RANDOMID" az identity create \ --name "${USER_ASSIGNED_IDENTITY_NAME}" \ --resource-group "${RESOURCE_GROUP}" \