I am trying to build a policy to deny disabling firewall in azure analysis service. But not able to deny disabling firewall.
I used below definition but it's not working
"if": {
"allOf": [
{
"field": "Microsoft.AnalysisServices/servers/ipV4FirewallSettings",
"equals": "Disabled"
}
]
},
"then": {
"effect": "deny"
}