Azure power shell命令用于删除App服务上的IP限制

时间:2018-06-06 08:15:55

标签: azure powershell azure-powershell azure-app-service-envrmnt azure-application-gateway

我完成了部分RnD,无法找到Azure Powershell命令删除App服务上的IP限制。有人可以帮我解决这个问题吗。

1 个答案:

答案 0 :(得分:2)

尝试下面的命令,它可以正常使用。

$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

enter image description here