How to get the location of the 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: 31-Aug-2021

491 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements