An administrator is configuring network security for an application in an Azure subscription. The environment contains the following resources:
* A virtual network named `VNet1` with two subnets: `Subnet-Web` () and `Subnet-App` ().
* A virtual machine named `VM1` in `Subnet-Web` that is associated with an Application Security Group (ASG) named `ASG-Web`.
* A virtual machine named `VM2` in `Subnet-App` that is associated with an ASG named `ASG-App` and has the IP address .
* A Network Security Group (NSG) named `NSG-Subnet` associated with `Subnet-Web`.
* An NSG named `NSG-NIC` associated with the network interface of `VM1`.
`NSG-Subnet` contains the following outbound security rules:
* Priority 150: Deny outbound traffic from `Subnet-Web` to `Subnet-App` on any port, with any protocol.
* Priority 250: Allow outbound traffic from `ASG-Web` to `ASG-App` on TCP port 8080.
`NSG-NIC` contains the following outbound security rules:
* Priority 100: Allow outbound traffic from `ASG-Web` to `ASG-App` on TCP port 8080.
Currently, `VM1` cannot establish a connection to `VM2` on TCP port 8080.
Which of the following modifications resolves the connectivity issue while maintaining the principle of least privilege?
- Change the priority of the Allow rule in `NSG-Subnet` to 120.Cevap
- BChange the priority of the Allow rule in `NSG-Subnet` to 300.
- CChange the priority of the Allow rule in `NSG-NIC` to 90.
- DRemove the Deny rule with priority 150 from `NSG-Subnet`.