Skip to content

Instantly share code, notes, and snippets.

@atulkamble
Created October 26, 2025 13:40
Show Gist options
  • Save atulkamble/788ecbbcfd928a62e6383b83b30eccf0 to your computer and use it in GitHub Desktop.
Save atulkamble/788ecbbcfd928a62e6383b83b30eccf0 to your computer and use it in GitHub Desktop.
Delete all RG in Azure
for rg in $(az group list --query "[].name" -o tsv); do
echo "Deleting Resource Group: $rg"
az group delete --name $rg --yes --no-wait
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment