Azure power shell command to remove IP restriction

2019-09-20 00:46发布

问题:

I did my part of RnD and could not find Azure Powershell command remove IP restrictions on App service. Can someone help me out here plz.

回答1:

Try the command below, it works fine on my side.

$r = Get-AzureRmResource -ResourceGroupName "yourresourcegroup" -ResourceType Microsoft.Web/sites/config -ResourceName yourappservicename/web -ApiVersion 2016-08-01
$p = $r.Properties
$p.ipSecurityRestrictions = @()
Set-AzureRmResource -ResourceGroupName  "yourresourcegroup" -ResourceType Microsoft.Web/sites/config -ResourceName yourappservicename/web -ApiVersion 2016-08-01 -PropertyObject $p