I've applied Azure policy which forces the user to assign a tag while creating a Resource Group.
When i create a new VM and then fill in all the fields, i create a new Resource Group in the same wizard and then click review and create button. This time azure policy is triggered properly and blocks me as the newly created RG is not created with tag.
But when I go to resource group policy and click on Add to create a new RG. that time i don't fill Tags then too policy doesn't get trigger. I'm little surprise why the first time this policy is working but not the second time.
{
"if": {
"allOf": [
{
"field": "tags",
"exists": "false"
},
{
"field": "type",
"equals": "Microsoft.Resources/subscriptions/resourceGroups"
}
]
},
"then": {
"effect": "deny"
}
}
Next:Tags
, just clickReview + Create
, the policy works. If I click theNext:Tags
first, then click theReview + Create
, the policy will not work. - Joy Wang-MSFTEnforce tag and its value on resource groups
, it also sometime works, sometime not work. It seems like a bug. - Joy Wang-MSFT