Exam Preparation Quiz

Question 65 of 75

Determine Azure Policy Effect

MDFT Pro has implemented the following Azure policy to secure its educational resources:

{
    "if": {
        "allOf": [
            {
                "field": "type",
                "equals": "Microsoft.Storage/storageAccounts"
            },
            {
                "field": "Microsoft.Storage/storageAccounts/supportsHttpsTrafficOnly",
                "notEquals": "true"
            }
        ]
    },
    "then": {
        "effect": "deny"
    }
}

You assign the policy to the Tenant root group. What is the effect of the policy?

Choose the correct answer from the options below.

Explanations for each answer:

Learn more about Azure Policy:
Azure Policy
Next Question