How to add the new tag to Azure VM using PowerShell?


To add the new tag of Azure VM using PowerShell, we need to use the New-AZTag command. Please note: If you have already tags applied to the VM, you need to use the Update-AZTag command to merge with the available Azure Tags otherwise all the previous applied.

For example, We have the below VM called TestMachine2k12 and after signing to the Azure account we need VMs resource ID to apply the tag to the VM.

We will use a tag in the HastTable format so we will have its Key and a Value. We need to apply the below new tag.

Example

$tag = @{Owner='Chirag'}

To apply the new tag,

New-AzTag -Tag $tag -ResourceId $vm.Id -Verbose

Output

If there are multiple tags, you can separate them by a comma.

Example

PS C:\> $tag = @{Owner='Chirag';Patching_Day='Sunday'}
PS C:\> New-AzTag -Tag $tag -ResourceId $vm.Id -Verbose

Output

Please note − In this operation earlier tag(s) were erased by the current tags.

Updated on: 06-Apr-2021

461 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements