我正在尝试通过powershell设置Azure中源代码管理器的拒绝选项:
我正在执行这个代码片段
$propertiesObject = @{
http20Enabled = $true;
ScmIpSecurityRestrictionsUseMain = $true;
scmIpSecurityRestrictions = @{"Action" = "Deny"};
}
Set-AzResource -PropertyObject $propertiesObject -ResourceGroupName $AppServiceRG -ResourceType Microsoft.Web/sites/config -ResourceName "$AppServiceName/web" -ApiVersion 2022-03-01 -Force
但我认为它不起作用,因为该选项是一个对象:
我如何设置拒绝?任何帮助都非常感谢
1条答案
按热度按时间kb5ga3dv1#
在Azure应用服务中,您可以通过执行以下命令设置不匹配规则操作-"拒绝":
上述命令已成功执行并反映在门户中。
Azure应用服务访问限制-Azure应用服务|微软学习