Skip to content

Instantly share code, notes, and snippets.

@kasunkv
Created January 4, 2019 08:29
Show Gist options
  • Save kasunkv/96669727cafc9e0b8cf24cd19f0f2742 to your computer and use it in GitHub Desktop.
Save kasunkv/96669727cafc9e0b8cf24cd19f0f2742 to your computer and use it in GitHub Desktop.
Add/Update Tags for Other Azure Resources
$res = Get-AzureRmResource -ResourceName "kvktagsweb" -ResourceGroupName "Tags-DEV-Web"
$res.Tags.Add("App", "WebApp") # This will only work if the resource already has tags.
Set-AzureRmResource -Tag $res.Tags -ResourceId $res.ResourceId -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment