Unable to select Virtual Network/Subnet when creating VM in Azure Portal

Nasser Al-Hadhrami 25 Reputation points
2025-09-10T12:17:56.03+00:00

Screenshot 2025-09-10 at 3.40.51 PM copy

Description: When attempting to create virtual machines through the Azure Portal, the Virtual Network and Subnet dropdown menus are not functioning properly. This issue occurs:

  • Across all Azure regions
  • For all VM types and sizes
  • With both existing VNets and when trying to create new ones
  • The Subnet field shows "The value must not be empty" error
  • Virtual Network dropdown appears empty or unresponsive

Steps attempted:

  • Cleared browser cache and cookies
  • Tried multiple browsers and incognito mode
  • Verified user permissions (Owner)
  • Attempted in multiple regions
  • Refreshed portal multiple times

Expected behavior: Virtual Network dropdown should display existing VNets, and Subnet dropdown should populate after VNet selection.

Impact: Unable to provision new VMs through Azure Portal, blocking deployment workflows.

Azure Virtual Network
Azure Virtual Network
An Azure networking service that is used to provision private networks and optionally to connect to on-premises datacenters.
{count} votes

Answer accepted by question author
  1. Ravi Varma Mudduluru 4,250 Reputation points Microsoft External Staff Moderator
    2025-09-11T17:22:34.1233333+00:00

    Hello @Nasser Al-Hadhrami,

    We have checked with the backed team, and the fix is available in this private flight: https://portal.azure.com/?Microsoft_Azure_Network=flight14. They are still working on part of the fix, but you should now be able to create a network interface without running into any issues. If you do, please don't hesitate to let me know!

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Thanks,
    M Ravi Varma

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Ankit Yadav 7,245 Reputation points Microsoft External Staff Moderator
    2025-09-10T21:18:42.25+00:00

    Hello Nasser Al-Hadhrami,

    Can you try to create a test VM using Azure CLI to test if that gets created successfully using that same subscription?

    Sample commands:
    Set subscription using below command :

    az account set --subscription "Your_subscription_name"
    

    then try to create VM using:

    az vm create -n MyVm -g MyRG -l eastus --image Ubuntu2204 --size Standard_B1s --generate-ssh-keys
    

    note: in the command
    ->MyVM is the VM name

    ->MyRG is the resource group name

    ->eastus is the location
    ->Ubuntu2204 is the VM image

    ->Standard_B1s is the VM size

    You can change the values accordingly and test if the VM gets created successfully for you from that subscription.
    For more examples/parameters, refer: https://learn.microsoft.com/en-us/cli/azure/vm?view=azure-cli-latest#az-vm-create-examples

    This way it can rule out the issues with your subscription, virtual network or subnet quota or usage and confirm if there's a portal issue or if it's limited to browser cookie/session.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.