--- title: "New-VBRAzureTag" description: "Defines Azure metadata tags. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet defines the VBRAzureTag object. This object contains Azure metadata tags." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrazuretag.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Protection Groups > Veeam Agent Management Protection Scope > New-VBRAzureTag" dateModified: "2026-08-19" --- # New-VBRAzureTag ## Short Description Defines Azure metadata tags. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRAzureTag -Key -Value [] ``` ## Detailed Description This cmdlet defines the [`VBRAzureTag`](vbrazuretag.md) object. This object contains Azure metadata tags. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Key

Specifies a key for the Azure metadata tag. The cmdlet will create the cmdlet with the specified key.

String

True

Named

False

Value

Specifies a value for the the Azure metadata tag. The cmdlet will create the cmdlet with the specified value.

String

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRAzureTag`](vbrazuretag.md) ## Examples ::: example ### Defining Azure MetadataTags This command defines Azure metadata tags. ``` New-VBRAzureTag -Key Critically -Value High ``` :::