你能看到是否通过Powershell为Logic Apps配置了IP限制吗?

时间:2018-03-26 13:41:15

标签: powershell azure azure-resource-manager azure-powershell azure-logic-apps

有没有办法在Logic App上看到IP限制?我希望能够验证运行的应用程序是否具有适当的IP限制。我知道没有命令从powershell配置IP限制但是有没有一些如何通过PowerShell看到它们?我可以查看via资源管理器,但我不确定是否可以通过powershell查看它们。

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

$ LogicAppConfig.Properties.accessControl.triggers.allowedCallerIpAddresses