An organization is deploying an Azure Application Gateway v2 to load balance traffic across a pool of backend web servers. The security policy requires end-to-end TLS encryption. The backend servers use certificates issued by an internal enterprise Certification Authority (CA). You need to configure the Application Gateway to support this configuration. In which order should you perform the configuration steps?
- 1Export the public root certificate of the internal enterprise CA as a Base-64 encoded .cer file.
- 2Create a backend pool containing the FQDNs or IP addresses of the backend web servers.
- 3Create backend settings configured for HTTPS on port 443 and upload the exported root certificate (.cer) to define it as a trusted root certificate.
- 4Upload the frontend certificate as a .pfx file to configure an HTTPS listener.
- 5Create a request routing rule to link the HTTPS listener, the backend pool, and the backend settings.
Answer
The correct sequence is: Export the public root certificate of the internal enterprise CA as a Base-64 encoded .cer file; Create a backend pool containing the FQDNs or IP addresses of the backend web servers; Create backend settings configured for HTTPS on port 443 and upload the exported root certificate (.cer); Upload the frontend certificate as a .pfx file to configure an HTTPS listener; and Create a request routing rule to link the HTTPS listener, the backend pool, and the backend settings.
The correct sequence begins with exporting the public root certificate from the enterprise CA (.cer format). This certificate is a dependency for configuring backend settings. Once the backend pool is established, the backend settings can be created with the uploaded root certificate to enable secure communication with backend servers. Next, the frontend HTTPS listener is configured with the frontend certificate (.pfx format). Finally, a request routing rule is created to tie all these components together. This sequence respects all configuration dependencies in Azure.
Step-by-Step Solution
Key Concept
End-to-end TLS configuration with custom/private CA on Azure Application Gateway v2
Estimated Time:3m 0s