"Enable Azure Resource Manager Private Network Access" for Azure App Configuration not working

Low Soon Chew 0 Reputation points
2025-10-15T09:29:06.0633333+00:00

When public access is enabled, we can access the Configuration Explorer in Azure Portal

We followed the settings below to enable private endpoint
https://free.blessedness.top/en-us/azure/azure-app-configuration/quickstart-deployment-overview

  1. Added Private endpoint
  2. Set Authentication mode = Pass-through
  3. Enabled Azure Resource Manager Private Network Access

But we cannot access Configuration Explorer in Azure Portal now

Azure App Configuration
Azure App Configuration
An Azure service that provides hosted, universal storage for Azure app configurations.
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Alex Burlachenko 18,310 Reputation points Volunteer Moderator
    2025-10-15T10:54:33.1166667+00:00

    Hi Low Soon Chew,

    you have done everything correctly for securing the data plane, but you have locked yourself out of the azure portal's configuration explorer.

    the 'configuration explorer' in the azure portal is a web interface that runs on your local machine. when you set up the private endpoint and disable public access, you are blocking all connections to your app configuration store that do not come from within your virtual network. your local machine is not on that virtual network, so the portal cannot connect to the store to display the data.

    the setting 'enable azure resource manager private network access' only affects management operations via the arm api, not the data plane access through the portal.

    to access the configuration explorer from the portal, you have a couple of options.

    the most straightforward way is to use an azure virtual machine that is inside the same virtual network as your private endpoint. remote desktop into that vm, open a web browser there, and then go to the azure portal. from within that vm, you will be able to access the configuration explorer because the traffic is originating from inside the vnet.

    another option is to set up an azure vpn gateway point to site vpn. this would allow you to connect your local machine to the azure virtual network. once connected, your local machine would have a route to the private endpoint and you could use the configuration explorer from the portal on your own pc.

    this is a common pattern for any azure service that uses private endpoints. the portal is an external tool, so it gets blocked when public access is turned off. you always need a machine inside the network to manage it, or you need to vpn in.

    you have not broken anything. to use the configuration explorer, you need to access it from a virtual machine that is inside your azure virtual network.

    regards,

    Alex

    and "yes" if you would follow me at Q&A - personaly thx.
    P.S. If my answer help to you, please Accept my answer
    

    https://ctrlaltdel.blog/

    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.