Reputation: 51
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
Upvotes: 0
Views: 2149
Reputation: 1064
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"
Upvotes: 0
Reputation: 42063
You should try
Get-AzureRmResource -ResourceType "Microsoft.Logic/workflows" -ResourceGroupName resourcegroupname
It works fine on my side.
Upvotes: 4