We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82fa36c + 34759db commit 0e5ce2dCopy full SHA for 0e5ce2d
articles/aks/azure-ad-rbac.md
@@ -134,7 +134,7 @@ AKSDEV_ID=$(az ad user create \
134
--display-name "AKS Dev" \
135
--user-principal-name $AAD_DEV_UPN \
136
--password $AAD_DEV_PW \
137
- --query objectId -o tsv)
+ --query id -o tsv)
138
```
139
140
2. Add the user to the *appdev* group created in the previous section using the [`az ad group member add`][az-ad-group-member-add] command.
@@ -163,7 +163,7 @@ AKSSRE_ID=$(az ad user create \
163
--display-name "AKS SRE" \
164
--user-principal-name $AAD_SRE_UPN \
165
--password $AAD_SRE_PW \
166
167
168
# Add the user to the opssre Azure AD group
169
az ad group member add --group opssre --member-id $AKSSRE_ID
0 commit comments