If I have a few hundred Logic Apps how do I workout which ones are disabled easily? Well the easiest way is with Azure Resource Graph

Resources
| where type =~ 'Microsoft.Logic/workflows'
and resourceGroup =~ 'EAI-Prod'
| extend state = tostring(parse_json(properties).state)
| where state != 'Enabled'
| project name, state

 

Buy Me A Coffee