An enterprise establishes the following Azure resource hierarchy:
* A management group named `Enterprise-MG`
* A subscription named `Sub-Finance-01` under `Enterprise-MG`
* Two resource groups under `Sub-Finance-01` named `RG-Secured` and `RG-General`
The following Azure Policy assignments are active:
* Policy Assignment 1: Assigned at `Enterprise-MG`. It uses a policy definition that denies the creation of virtual machines unless they use the `Standard_E2s_v3` SKU. The resource group `RG-Secured` is configured as an exclusion.
* Policy Assignment 2: Assigned at `Sub-Finance-01`. It uses a policy definition that denies the creation of resources unless they have a tag named `CostCenter`. The resource group `RG-General` is configured as an exclusion.
An administrator attempts to perform the following virtual machine deployments:
* Deployment 1: A `Standard_D2s_v3` virtual machine with the tag `CostCenter: 101` in `RG-General`
* Deployment 2: A `Standard_E2s_v3` virtual machine without the `CostCenter` tag in `RG-Secured`
* Deployment 3: A `Standard_D2s_v3` virtual machine without the `CostCenter` tag in `RG-General`
* Deployment 4: A `Standard_D2s_v3` virtual machine with the tag `CostCenter: 102` in `RG-Secured`
Which of the virtual machine deployments will succeed?
- The deployment of the `Standard_D2s_v3` virtual machine with the tag `CostCenter: 102` in `RG-Secured`Answer
- BThe deployment of the `Standard_D2s_v3` virtual machine with the tag `CostCenter: 101` in `RG-General`
- CThe deployment of the `Standard_E2s_v3` virtual machine without the `CostCenter` tag in `RG-Secured`
- DThe deployment of the `Standard_D2s_v3` virtual machine without the `CostCenter` tag in `RG-General`