问题
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
来源:https://stackoverflow.com/questions/50715427/azure-power-shell-command-to-remove-ip-restrictions-on-app-service