您能否查看IP限制是否是通过PowerShell配置为逻辑应用程序的



是否有任何方法可以在逻辑应用程序上查看IP限制?我希望能够验证运行的应用具有适当的IP限制。我知道没有命令可以从PowerShell配置IP限制,但是无论如何是否有一些如何通过PowerShell看到它们?我可以查看Via Resource Explorer,但我不确定是否有任何方法可以通过PowerShell看到它们。

Ip restrictionsAccess Control的一部分。您可以直接查询Azure资源:

# Don't forget to login with Login-AzureRMAccount
# Get the resource
$myLogicApp = Get-AzureRmResource -ResourceGroupName "rg-name" -ResourceType Microsoft.Logic/workflows -ResourceName my-logic-app-name -ApiVersion 2016-06-01
# Get the ip restrictions:
$myLogicApp.Properties.accessControl.allowedCallerIpAddresses

$ logicappconfig.properties.accesscontrol.triggers.allowedcalleripaddresses

相关内容

  • 没有找到相关文章

最新更新