Last active
January 9, 2026 15:12
-
-
Save atulkamble/788ecbbcfd928a62e6383b83b30eccf0 to your computer and use it in GitHub Desktop.
Revisions
-
atulkamble renamed this gist
Jan 9, 2026 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
atulkamble renamed this gist
Oct 26, 2025 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
atulkamble created this gist
Oct 26, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ 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