An enterprise is designing a regional load balancing and traffic delivery solution in Azure. The design must satisfy the following requirements:
1. Incoming public HTTP/S traffic must be routed based on the URL path: requests to `/search/*` must be forwarded to a Virtual Machine Scale Set, while requests to `/checkout/*` must be forwarded to a group of Dedicated Hosts.
2. SSL/TLS termination must be performed at the application routing boundary to decrypt traffic before reaching the backend VMs.
3. Internal database replication traffic on TCP port 6379 must be load-balanced across database virtual machines distributed across multiple Availability Zones for high availability.
4. The database virtual machines are currently configured with Basic SKU Public IP addresses for legacy remote access.
Which configuration should you select to satisfy all requirements and ensure successful deployment validation?
- Deploy an Azure Application Gateway for the HTTP/S traffic, and deploy a Standard Azure Load Balancer for the internal TCP traffic after upgrading the database virtual machines' Public IPs to the Standard SKU.Answer
- BDeploy an Azure Traffic Manager for the HTTP/S traffic, and deploy a Standard Azure Load Balancer for the internal TCP traffic while keeping the database virtual machines' Public IPs on the Basic SKU.
- CDeploy an Azure Application Gateway for the HTTP/S traffic, and deploy a Basic Azure Load Balancer for the internal TCP traffic to maintain compatibility with the database virtual machines' Basic SKU Public IPs.
- DDeploy an Azure Front Door for the HTTP/S traffic, and deploy a Standard Azure Load Balancer for the internal TCP traffic while keeping the database virtual machines' Public IPs on the Basic SKU.