An administrator is configuring network security for a database application in Microsoft Azure. The environment contains the following resources:
* A virtual network named `VNet-Production` with a subnet named `Subnet-Data` ().
* A virtual machine named `VM-Database` with a network interface named `nic-db-01` connected to `Subnet-Data` and associated with an Application Security Group named `ASG-Database`.
* A virtual machine named `VM-WebFrontend` associated with an Application Security Group named `ASG-WebFrontend`.
A Network Security Group named `NSG-Subnet` is associated with `Subnet-Data` and contains the following inbound rules:
| Priority | Name | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|---|
| 100 | Allow-Web-to-DB-Subnet | ASG-WebFrontend | ASG-Database | 1433 | TCP | Allow |
| 1000 | Deny-All-Inbound-Subnet | Any | Any | * | * | Deny |
A Network Security Group named `NSG-NIC` is associated with `nic-db-01` and contains the following inbound rules:
| Priority | Name | Source | Destination | Port | Protocol | Action |
|---|---|---|---|---|---|---|
| 150 | Deny-Web-to-DB-NIC | ASG-WebFrontend | ASG-Database | 1433 | TCP | Deny |
| 200 | Allow-Web-to-DB-NIC | ASG-WebFrontend | ASG-Database | 1433 | TCP | Allow |
You need to ensure that `VM-WebFrontend` can establish a database connection to `VM-Database` on TCP port 1433. The solution must minimize security risks and administrative effort.
Which of the following actions should you perform?
- Change the priority of the Allow-Web-to-DB-NIC rule in NSG-NIC to 120.Cevap
- BChange the priority of the Allow-Web-to-DB-Subnet rule in NSG-Subnet to 250.
- CChange the priority of the Deny-Web-to-DB-NIC rule in NSG-NIC to 100.
- DRemove the association between NSG-Subnet and the Subnet-Data subnet.