Get Location of Azure VM Using Azure CLI in PowerShell



To find the location of the particular Azure VM using Az CLI, we can use the below command but before that, you need to make sure you are connected to the Azure cloud and had set that specific subscription.

PS C:\> az vm show -n VMName -g ResourceGroupName --query '[location]' -otsv

Alternatively, you can use the below command to get the location of the Azure VM.

PS C:\> az vm list --query "[?name==’VMName’].location" -otsv
Updated on: 2021-08-31T09:47:35+05:30

670 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements