0
votes

Say for Suppose i have Logic App 1 ,Logic App 2 ,Logic App 3 etc got created in an Azure Resource Group X. Then Using Azure Powershell Command, I want to get this list of logic apps present under 'X' Azure Resource Group

2

2 Answers

4
votes

You should try

Get-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupName resourcegroupname

It works fine on my side.

enter image description here

0
votes

This PowerShell Core command should work; replace "myresourcegroup" with the name of the resource group you want to search. In Azure Cloud Shell you can access PowerShell Core by running pwsh.

Find-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupNameContains "myresourcegroup"

enter image description here