How to publish external ASEv3 with manual assign IP in ARM template

Bingqian Shen 20 Reputation points Microsoft Employee
2023-01-19T00:49:57.5866667+00:00

Hi, I'm trying to deploy an external ASEv3 with manual assign IP by ARM template, like this in portal: enter image description here After the ASE deployed (it do use the ip I assigned) and I export the ARM template, I didn't find any setting relate to it, could you please teach me how to setup the IP in the ARM template? Thanks!

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

Accepted answer
  1. SnehaAgrawal-MSFT 20,856 Reputation points
    2023-01-19T17:37:40.6933333+00:00

    Bingqian Shen Thanks for reaching us here! As you also reached us through GitHub and suggested by author that "We are just rolling out this new functionality and docs will be updated shortly"

    Suggestion- networkingConfiguration section has a new property called inboundIpAddressOverride. This can be set to a public IP resource id for ELB ASE and to a fixed IP from the subnet range for ILB ASE.

    {"type": "Microsoft.Web/hostingEnvironments","apiVersion": "2022-03-01","name": "[parameters('aseName')]","location": "[resourceGroup().location]","kind": "ASEV3","properties": {"internalLoadBalancingMode": "None","virtualNetwork": {"id": "[parameters('subnetResourceId')]"},"networkingConfiguration":{"inboundIpAddressOverride": "[parameters('publicIpResourceId')]"}}} 
    
    

    Sharing the resolution here for wider audience having similar query.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful