Your company has an Azure subscription containing a virtual network named `VNet1`. `VNet1` has two subnets: `Subnet-Web` () and `Subnet-DB` ().
The web servers are deployed in `Subnet-Web` and associated with an Application Security Group (ASG) named `ASG-Web`. The database servers are deployed in `Subnet-DB` and associated with an ASG named `ASG-DB`.
A Network Security Group (NSG) named `NSG-Web` is associated with `Subnet-Web`. An NSG named `NSG-DB` is associated with `Subnet-DB`. `NSG-DB` contains the following custom inbound security rule:
- Priority:
- Source: `VirtualNetwork`
- Destination: `Any`
- Port: `*`
- Protocol: `Any`
- Action: `Deny`
You need to configure the NSGs to meet the following requirements:
1. Allow HTTPS traffic (TCP port ) from the Internet to the web servers.
2. Allow SQL Server traffic (TCP port ) from the web servers to the database servers.
3. Adhere to the principle of least privilege.
Which two inbound security rules should you configure? (Select two.)
- In `NSG-Web`, create a rule with Priority: , Source: `Internet`, Port: , Destination: `ASG-Web`, Action: `Allow`.Answer
- In `NSG-DB`, create a rule with Priority: , Source: `ASG-Web`, Port: , Destination: `ASG-DB`, Action: `Allow`.Answer
- CIn `NSG-DB`, create a rule with Priority: , Source: `ASG-Web`, Port: , Destination: `ASG-DB`, Action: `Allow`.
- DIn `NSG-Web`, create a rule with Priority: , Source: `Internet`, Port: , Destination: `Any`, Action: `Allow`.