Creating/using app service environment both internally and externallly

Varma 1,380 Reputation points
2024-03-05T10:14:35.24+00:00

I noticed internal and external access options while creating app service envriuonment.

what if I want to access both internal and external as well, how can achieve that?

User's image

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,644 questions
{count} votes

Accepted answer
  1. Amaranatha Reddy Peddireddi 75 Reputation points
    2024-03-05T14:36:42.79+00:00

    To achieve both internal and external access in an Azure App Service Environment (ASE), you can:

    1. Set up an External ASE to ensure it's accessible over the internet.
    2. Configure a Private Endpoint for internal access, enabling secure access within your Virtual Network (VNet).

    This setup allows the ASE to be accessible externally while also providing a private, secure pathway for internal access, leveraging Azure's networking capabilities to manage both access paths efficiently.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. VenkateshDodda-MSFT 19,821 Reputation points Microsoft Employee
    2024-03-05T14:29:43.4233333+00:00

    @Varma Thanks for your follow-up questions on this. sorry for the confusion here.

    Yes, you can have only either internal or external access when you are creating ASE

    • External: This type of deployment exposes the hosted apps by using an IP address that is accessible on the internet.
    • Internal load balancer: This type of deployment exposes the hosted apps on an IP address inside your virtual network. The internal endpoint is an internal load balancer.

    Regardless of the deployment type, all App Service Environments have a public virtual IP (VIP). This VIP is used for inbound management traffic, and as the address when you're making calls from the App Service Environment to the internet. Such calls leave the virtual network through the VIP assigned for the App Service Environment.

    Refer to this Networking consideration for App service documentation for more information.

    1 person found this answer helpful.
    0 comments No comments

Your answer

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