Creating app service for internal purpose in isolated way and queries about it

Varma 1,380 Reputation points
2024-07-09T10:34:20.85+00:00

Can we create isolated instance of app service? if yes how?

can we call azure web app as app service?

when create app service , do we have option to create multiple instances of out of it?

Do we have option to create in isolated way, if yes how?

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

1 answer

Sort by: Most helpful
  1. Adharsh Santhanam 4,365 Reputation points
    2024-07-09T12:36:18.35+00:00

    Hello Varma,

    1. To create isolated instance of app service, you can set the pricing tier of your app service plan to "Isolated" or "IsolatedV2". Both these tiers run dedicated Azure VMs on dedicated Azure VNets and provides network isolation on top of compute isolation to your apps.
    2. Azure app service is an HTTP-based service for hosting web applications and for you to run a webapp, this needs to run within an App Service Plan
    3. I'm guessing you're asking about the ability to host multiple webapps within the same app service plan. If so, you can create new webapps and at the time of creation, make sure to point them to the same instance of the app service plan. However, please be mindful of the fact that when you do so, all the webapps share the same underlying app service plan and hence, depending on your webapp and the app service plan, there might be resource crunch
    4. You create an app service plan and set the pricing plan to the "Isolated" mode and choose the specific configuration.User's image

    Please do not forget to "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.


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.