Debasis Ghosh
Debasis Ghosh

Reputation: 263

How do I deploy WebApp into existing Vnet and Subnet in Azure

We have our own Virtual Network. Now we want to deploy WebApp into an existing Virtual Network. Looking for the available options in Azure, is there any ARM template available? One option I found - App Service Environment V2

Please help me for other options and ARM template to create the Infrastructure and WebbApp.

Thanks.

Regards, Deb

Upvotes: 1

Views: 2127

Answers (3)

Debasis Ghosh
Debasis Ghosh

Reputation: 263

App Service Environment is the only option to deploy Azure Web App into existing VNet/Subnet (Private).

Upvotes: 2

vhr
vhr

Reputation: 1664

If you created your resources manually you can download your ARM template from Azure. Just click your resource group and then "Automation script". You can download it and use with PowerShell to deploy everything:

enter image description here

Upvotes: 0

Rahul Ruikar
Rahul Ruikar

Reputation: 1086

Yes. Azure App Service Environment is a deployment of Azure App Service into a subnet in an Azure virtual network (VNet).

Take a look at this link https://learn.microsoft.com/en-us/azure/app-service/environment/create-external-ase

Create ASE from template https://learn.microsoft.com/en-us/azure/app-service/environment/create-from-template

Template example on github samples https://azure.microsoft.com/documentation/templates/201-web-app-asev2-create

Upvotes: 1

Related Questions