Hello @Assaf L ,
Welcome to Microsoft QnA.
Availability zones are isolated locations within an Azure region that are designed to offer higher availability for your workloads. Each availability zone consists of one or more data centers that are equipped with independent power, networking, and cooling.
So, if your Azure virtual machine (VM) has an availability zone set to "None," it means that it is not part of an availability zone.
To determine the availability zone, you can run the following command from the Azure cli:
az vm show --resource-group <resource-group-name> --name <vm-name> --query "zones" --output tsv
If the command does not return anything or returns an empty string, it means that the VM is not part of an availability zone.
However, as mentioned above by Michael, you can check the region in which your VM is running either from the portal or by running the below command via Azure cli.
az vm show --resource-group <resource-group-name> --name <vm-name> --query "[resourceGroup, location]" --output tsv
The location returned by this command is the region in which the VM is located.
Hope that answers your question.
--------
Please accept as answer
if the above information is helpful.