Azure / azure-powershell

Microsoft Azure PowerShell
Other
4.21k stars 3.82k forks source link

[Feature]: Support accessControl Allowed Caller IpAddresses on AzLogicApp #18965

Open JamesDLD opened 2 years ago

JamesDLD commented 2 years ago

Description of the new feature

accessControl manage allowedCallerIpAddresses for the following usages:

Reference: Microsoft.Logic workflows

Proposed implementation details (optional)

Get-AzLogicApp -Name $logicApp.Name | Select-Object -Property Name, AccessControl

Add-AzLogicAppAccessControl -Name $logicApp.Name -WorkflowManagementAllowedCallerIpAddresses $missingIPRules.InputObject

Add-AzLogicAppAccessControl -Name $logicApp.Name -ActionsAllowedCallerIpAddresses $missingIPRules.InputObject

ghost commented 2 years ago

Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @Azure/azure-logicapps-team.

Issue Details
### Description of the new feature accessControl manage allowedCallerIpAddresses for the following usages: - actions - contents - triggers - workflowManagement Reference: [Microsoft.Logic workflows](https://docs.microsoft.com/en-us/azure/templates/microsoft.logic/workflows?WT.mc_id=AZ-MVP-5003548) ### Proposed implementation details (optional) Get-AzLogicApp -Name $logicApp.Name | Select-Object -Property Name, AccessControl Add-AzLogicAppAccessControl -Name $logicApp.Name -WorkflowManagementAllowedCallerIpAddresses $missingIPRules.InputObject Add-AzLogicAppAccessControl -Name $logicApp.Name -ActionsAllowedCallerIpAddresses $missingIPRules.InputObject
Author: JamesDLD
Assignees: -
Labels: `feature-request`, `Logic App`, `Service Attention`, `customer-reported`
Milestone: -
JamesDLD commented 2 years ago

I was searching for a workaround but I don't see any Azure Logic Apps REST Operation Groups that could help here, do you confirm? Thanks.