Forrest logo
back to the az tool

az-tag:tldr:71dde

az-tag: Create a tag in the subscription.
$ az tag create --name ${tag_name}
try on your machine

The command "az tag create --name ${tag_name}" is specifically used in the Azure CLI (Command-Line Interface) to create a new Azure resource tag.

Here's a breakdown of the command and its components:

  • "az tag create": This is the main command that instructs Azure CLI to create a new tag.
  • "--name": This flag indicates that the following value is the name of the tag being created.
  • "${tag_name}": This is a placeholder that should be replaced with the actual desired name of the tag. The "${tag_name}" format suggests that the tag name is being stored in a variable or is provided as an argument.

When you execute this command, Azure CLI will create a new tag with the name specified in the ${tag_name} variable. Replace ${tag_name} with the desired name of the tag when using 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