A healthcare provider is deploying a multi-tier clinical application across two Azure regions: East US 2 and West US 2.
The architecture team specifies the following technical requirements for the application:
1. Global Traffic Ingress: Client traffic must be dynamically routed to the closest healthy region based on latency. The ingress layer must support SSL/TLS termination, URL path-based routing (routing `/api/*` traffic to API clusters and `/static/*` traffic to static assets), and Web Application Firewall (WAF) protection at the network edge.
2. Regional Backend Load Balancing: In each region, internal services communicating over TCP port 5005 must be load balanced across a backend pool of virtual machines. The load balancer must support High Availability (HA) ports.
3. Administrative Access: During a temporary transition phase, the backend virtual machines must maintain their existing direct administrative access using Basic SKU public IP addresses attached to their network interfaces.
You need to design a load balancing and delivery solution that satisfies all of the application's requirements while ensuring the deployment passes Azure validation.
Which two of the following components or configurations should you include in the design?
- Deploy Azure Front Door to manage global traffic routing, terminate SSL/TLS sessions, and enforce WAF policies at the edge.Answer
- Upgrade the public IP addresses of the backend virtual machine network interfaces (NICs) to the Standard SKU, and deploy a Standard SKU Azure Load Balancer for regional backend load balancing.Answer
- CDeploy Azure Traffic Manager to route global client traffic, terminate SSL/TLS sessions, and implement path-based routing rules.
- DConfigure a Basic SKU Azure Load Balancer for the regional backend pools to support the high availability ports requirement without modifying the virtual machine public IP configurations.
- EAssociate the virtual machines directly to a Standard SKU Azure Load Balancer backend pool while keeping their existing Basic SKU public IP addresses.