Are you still paying for Azure resources you no longer need? Letโs tidy up before those costs sneak up on you.
Clean up your Azure DevOps environment with these easy steps:
After finishing the module, you have Azure Functions and App Service resources.
To avoid extra charges and free up Azure DevOps build minutes, it's time to clean up.
The simplest way is to delete the resource group that holds all your resources.
Open the Azure Cloud Shell in the portal.
Choose Bash.
Run this command:
az group delete --name
Confirm with โyโ when prompted.
Optionally, check the remaining resource groups:
az group list --output table
Suppose your resource group is named my-functions-rg. In Azure Cloud Shell (Bash), run:
az group delete --name my-functions-rg
Type y to confirm. When it's done, run:
az group list --output table
This lets you verify the deletion. Youโve now cleaned up your environmentโand stopped potential cost leakages!
Whatโs your routine for cleaning up cloud environments when your project wraps up?
Top comments (0)