An Azure service that automates the access and use of data across clouds without writing code.
Ok,noted. I managed to do this task.
$resourceGroupName = "test-rg-dev"
$resourceType = "Microsoft.Logic/workflows"
Deleting the logic apps using the AzResource
"Deleting the logic apps in resource group: '$resourceGroupName' "
$logicApps = @()
Get-AzResource -ResourceGroupName $resourceGroupName -ResourceType $resourceType | ForEach-Object{$logicApps += $_}
write-host $logicApps.Count 'Logic App(s) found'
foreach ($logicApp in $logicApps){
$name = $logicApp.Name
Write-Output "Deleting Logic App : $name "
Remove-AzResource -ResourceId $logicApp.Id -Force
}