Skip to content

Instantly share code, notes, and snippets.

@mattcuk
Created April 3, 2020 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattcuk/05c488d3bb06726a7a06fa0f92e62d78 to your computer and use it in GitHub Desktop.
Save mattcuk/05c488d3bb06726a7a06fa0f92e62d78 to your computer and use it in GitHub Desktop.
Simple script to list out all Logic Apps in a subscription.. one per line
logicapps=$(az resource list --output tsv --resource-type "Microsoft.Logic/workflows" --query [].id)
for logicapp in $logicapps
do
echo "$logicapp"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment