In this article you will learn how to add tag to single resource, whole resource group, delete tags and search for resources by tag within Azure.
Crete new resource group from cloud shell with this command:
az group create ` --name tagrg ` --location westeurope
In next step add VM into the resource group with this command.
az vm create ` --name vmtag1 ` --resource-group tagrg ` --image Win2019Datacenter ` --location westeurope ` --admin-username adam` --admin-password Pass!
Then add new tag from resource group.
Recently I was working on prototype game based on old school isometric games such as Fallout. I wanted to be able to create weapons quickly without having to copy and paste game objects. Using ScriptableWizzard base class helped me to achieve my goal. Thanks to that script I am able to quickly create new weapon from Unity editor.
Full code below.