SC-100 • Practice Test 35
Free SC-100 practice test — 15 questions with explanations. Set 35. No signup required.
Refer to the exhibit. You are reviewing an Azure Policy definition. What will this policy do when assigned to a subscription?
Refer to the exhibit.
```json
{
"properties": {
"policyRule": {
"if": {
"allOf": [
{
"field": "type",
"equals": "Microsoft.Compute/virtualMachines"
},
{
"field": "Microsoft.Compute/virtualMachines/storageProfile.osDisk.managedDisk.storageAccountType",
"notEquals": "Premium_LRS"
}
]
},
"then": {
"effect": "deny"
}
}
}
}
```