Edit

Share via


Containerize tutorial cleanup and next steps

In this part of the tutorial series, you learn how to clean up resources used in Azure so you don't incur other charges and help keep your Azure subscription uncluttered.

Clean up resources

At the end of a tutorial or project, it's important to clean up any Azure resources you no longer need. This helps you:

  • Avoid unnecessary charges – Resources left running can continue to accrue costs.
  • Keep your Azure subscription organized – Removing unused resources makes it easier to manage and navigate your subscription.

In this tutorial, all the Azure resources were created in the same resource group. Removing the resource group removes all resources in the resource group and is the fastest way to remove all Azure resources used for your app.

Tip

If you plan to continue development or testing, you can leave the resources running. Just be aware of potential costs.

Azure CLI commands can be run in the Azure Cloud Shell or on a workstation with the Azure CLI installed.

  1. Delete the resource group by using the az group delete command.

    #!/bin/bash
    RESOURCE_GROUP_NAME='msdocs-web-app-rg'
    az group delete --name $RESOURCE_GROUP_NAME 
    

You can optionally add the --no-wait argument to allow the command to return before the operation is complete.

Next steps

After completing this tutorial, here are some next steps you can take to build upon what you learned and move the tutorial code and deployment closer to production ready:

The following are some Learn modules that explore the technologies and themes covered in this tutorial: