Forrest logo
back to the az tool

az-tag:tldr:66b49

az-tag: Delete a tag from the subscription.
$ az tag delete --name ${tag_name}
try on your machine

The command "az tag delete --name ${tag_name}" is used to delete a specific tag in Azure.

Here's a breakdown of the command:

  • "az tag delete": This is the Azure CLI command for deleting tags.
  • "--name ${tag_name}": This is an argument that specifies the name of the tag to be deleted. The "${tag_name}" is a placeholder that should be replaced with the actual name of the tag. For example, if you want to delete a tag named "environment", you would replace "${tag_name}" with "environment". The command will then delete the tag with that name.

Make sure you have the necessary permissions and are logged into Azure CLI before running this command.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the az tool