I am looking for an option to enforce user to use specific image, i am trying to modify below code to use HuB image
. Below is the code I am trying to modify to enforce windows HuB
"if": {
"allOf": [
{
"field": "type",
"in": [ "Microsoft.Compute/virtualMachines", "Microsoft.Compute/VirtualMachineScaleSets" ]
},
{
"field": "Microsoft.Compute/licenseType",
"exists": Windows_Server
}
]
},
"then": {
"effect": "deny"
}
} }
If my understanding is right, you could firstly find Hub images's SKU.
For Windows Server:
For Windows Client:
More information about this please refer to this blog and this link.
According to the official document. Maybe you could modify your policy as below: