Skip to content

Commit 0c0d2ef

Browse files
authored
Fix wrong parameter name
According to https://learn.microsoft.com/en-us/cli/azure/reference-index?view=azure-cli-latest#az-login the correct parameter name for passing tenant id to az login is --tenant and not --tenant-id.
1 parent e180739 commit 0c0d2ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AKS-Arc/disable-windows-nodepool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ az k8s-extension update --resource-group $resourceGroup --cluster-name $clusterN
9090
If for some reason you're not able to use Azure CloudShell or a machine with connectivity to Azure in order to disable Windows nodepool, you can disable Windows nodepool after connecting to any one of the Azure Local physical nodes with Remote Desktop. You must first sign in to Azure.
9191

9292
```powershell
93-
az login --use-device-code --tenant-id <Azure tenant ID>
93+
az login --use-device-code --tenant <Azure tenant ID>
9494
9595
az account set -s <subscription ID>
9696

0 commit comments

Comments
 (0)