Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Move existing app service into app service environment

We are currently running several Azure App Services which are having trouble with PCI-DSS compliance, due to the fact that App Services have TLSv1.0 enabled, with no option to disable it. After reading around, it seems like App Service Environments will allow us to do just that. However, I can't seem to figure out how to migrate our existing app to the new service environment. Do we just have to create a new app from scratch?

like image 417
qwertymodo Avatar asked Jun 08 '16 18:06

qwertymodo


People also ask

What is the difference between APP service plan and app service environment?

An App Service Environment is a single-tenant deployment of Azure App Service that runs on your virtual network. Applications are hosted in App Service plans, which are created in an App Service Environment. An App Service plan is essentially a provisioning profile for an application host.

How do I move app services to another resource group?

App Service Environments can't be moved to a new resource group or subscription. However, you can move a web app and app service plan to a new subscription without moving the App Service Environment.


1 Answers

I assume your existing apps have already been deployed into existing App Service Plan? If so, you cannot move, all you can do is to clone it into a new ASP which has been deployed into your ASE

Given the fact that an ASP’s location (within an ASE or in a shared public location) cannot be changed once it is created, you have to clone/duplicate the deployments when you scale your apps in this approach. It also implies that the order you create resources is ASE (optional), then ASP, and finally add App Service apps into an ASP.

Or you can see my ASP/ASE learning at my blog

like image 96
Eric Huang Avatar answered Oct 12 '22 21:10

Eric Huang