Skip to content

Instantly share code, notes, and snippets.

@veeravat
Last active June 25, 2024 03:26
Show Gist options
  • Save veeravat/8d87c872ae8be3899e905a80048f983f to your computer and use it in GitHub Desktop.
Save veeravat/8d87c872ae8be3899e905a80048f983f to your computer and use it in GitHub Desktop.
# Delete all resource group in subscription
# Except Locked RG
$RG = $(az group list -o tsv --query [].name)
ForEach ($value in $RG) {az group delete -g $value -y --no-wait}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment