A policy initiative is assigned at the Corp management group to enforce allowed locations and required tags. A new subscription is added under Corp later. Which two statements are true? Select two.
Trap 1: The initiative must be copied to every resource group in the new…
Because the assignment is at the corp management group, it is automatically inherited by the new subscription and every resource group inside it; there is no need to copy or recreate the initiative at a lower scope. Azure Policy inheritance means that any resource group or resource in the subscription is already covered by the same assignment. Copying the initiative to each resource group would cause duplicate assignments and is unnecessary, not required.
Trap 2: The initiative changes RBAC so users lose read access to the…
Azure Policy works through effects such as audit, deny, append, or deployIfNotExists to evaluate and enforce resource configurations; it never modifies Azure RBAC role assignments or permissions. Resource access (read, write, delete) is controlled by role assignments, which are unaffected by Policy. The only way a policy can appear to affect access is indirectly by denying creation of a role assignment or resource, but it does not revoke existing read access for users.
Trap 3: Compliance results are only visible in Activity Log, not in Azure…
The Azure Portal has a dedicated Policy blade with a Compliance dashboard that lists per-scope compliance, per-definition results, and per-resource status; returning to the Activity Log is unnecessary and misleading. Activity Log records control-plane events (like creating or deleting resources) and does not persist the ongoing policy compliance state. Therefore, asserting that compliance results are only visible in Activity Log is incorrect because Azure Policy's own reporting surfaces are the primary and authoritative view.
- A
The new subscription is automatically in scope because the assignment is at the management group.
Because the initiative is assigned to the corp management group, the assignment applies to that management group and all of its descendant scopes (child management groups, subscriptions, resource groups, and resources). When a new subscription is created under corp, it immediately falls within the assignment's scope, so the policy definitions are enforced and evaluated without any extra step. This inheritance is a fundamental characteristic of Azure Policy and is applied continuously as subscriptions are added or moved.
- B
The initiative must be copied to every resource group in the new subscription before it takes effect.
Why wrong: Because the assignment is at the corp management group, it is automatically inherited by the new subscription and every resource group inside it; there is no need to copy or recreate the initiative at a lower scope. Azure Policy inheritance means that any resource group or resource in the subscription is already covered by the same assignment. Copying the initiative to each resource group would cause duplicate assignments and is unnecessary, not required.
- C
Existing noncompliant resources appear in Azure Policy compliance, but they are not changed until remediation runs.
Azure Policy compliance scanning identifies which existing resources in scope do not satisfy the assigned initiative's conditions, but simply identifying them does not change the resource. To bring already-deployed resources into compliance, a separate remediation task must be run—for example, using the deployIfNotExists or modify effect—which requires a managed identity with the necessary permissions. Until that remediation runs, the resource will remain noncompliant in the compliance view even though the policy is actively assigned.
- D
The initiative changes RBAC so users lose read access to the subscription.
Why wrong: Azure Policy works through effects such as audit, deny, append, or deployIfNotExists to evaluate and enforce resource configurations; it never modifies Azure RBAC role assignments or permissions. Resource access (read, write, delete) is controlled by role assignments, which are unaffected by Policy. The only way a policy can appear to affect access is indirectly by denying creation of a role assignment or resource, but it does not revoke existing read access for users.
- E
Compliance results are only visible in Activity Log, not in Azure Policy.
Why wrong: The Azure Portal has a dedicated Policy blade with a Compliance dashboard that lists per-scope compliance, per-definition results, and per-resource status; returning to the Activity Log is unnecessary and misleading. Activity Log records control-plane events (like creating or deleting resources) and does not persist the ongoing policy compliance state. Therefore, asserting that compliance results are only visible in Activity Log is incorrect because Azure Policy's own reporting surfaces are the primary and authoritative view.