Skip to content

Commit 6cd59f1

Browse files
Merge pull request #117940 from JoeyC-Dev/patch-2
Fix typo in azure-ad-rbac.md
2 parents 295cfab + 53bcaa7 commit 6cd59f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/aks/azure-ad-rbac.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ In production environments, you can use existing users and groups within a Micro
7373
2. Create the first example group in Microsoft Entra ID for the application developers using the [`az ad group create`][az-ad-group-create] command. The following example creates a group named *appdev*:
7474
7575
```azurecli-interactive
76-
APPDEV_ID=$(az ad group create --display-name appdev --mail-nickname appdev --query Id -o tsv)
76+
APPDEV_ID=$(az ad group create --display-name appdev --mail-nickname appdev --query id -o tsv)
7777
```
7878
7979
3. Create an Azure role assignment for the *appdev* group using the [`az role assignment create`][az-role-assignment-create] command. This assignment lets any member of the group use `kubectl` to interact with an AKS cluster by granting them the *Azure Kubernetes Service Cluster User* Role.
@@ -91,7 +91,7 @@ In production environments, you can use existing users and groups within a Micro
9191
4. Create a second example group for SREs named *opssre*.
9292
9393
```azurecli-interactive
94-
OPSSRE_ID=$(az ad group create --display-name opssre --mail-nickname opssre --query objectId -o tsv)
94+
OPSSRE_ID=$(az ad group create --display-name opssre --mail-nickname opssre --query id -o tsv)
9595
```
9696
9797
5. Create an Azure role assignment to grant members of the group the *Azure Kubernetes Service Cluster User* Role.

0 commit comments

Comments
 (0)