This is a dedicated watch page for a single video.
You have an Azure resource group – RG1 that contains an existing tag as shown below: “Env”: “Prod” You need to add another below tag to RG1. “Owner”:” John” You executed below powershell cmdlet: $tags = (Get-AzResourceGroup -name RG1).Tags $tags. Add(“Owner”:”John”) Set-AzResourceGroup -Tag $tags -Name RG1 Does this meet the goal ?