Deploying Azure Application Gateway using Azure CLI and ARM templates for automation


Here are the Azure CLI commands and ARM (Azure Resource Manager) template examples for deploying an Azure Application Gateway, including the configuration of backend pools, routing rules, and SSL termination.

Azure CLI Deployment

You can use the Azure CLI to create and configure the Azure Application Gateway, backend pool, routing rules, and SSL termination.

a. Create a Resource Group

b. Create a Virtual Network and Subnets

c. Create Public IP for Application Gateway

d. Create Application Gateway

e. Configure Backend Pool

f. Configure HTTP Settings

g. Create Listener

h. Create Routing Rules (Basic or Path-Based)

For path-based routing:

i. Enable SSL Termination

  1. First, upload your SSL certificate to Key Vault (if needed):

  1. Then, create the HTTPS listener with SSL termination:

j. Create Web Application Firewall (Optional)

ARM Template for Application Gateway Deployment

Below is an example ARM template to deploy an Azure Application Gateway with SSL termination, routing rules, and Web Application Firewall (WAF).

Save this as a .json file (e.g., application-gateway-deployment.json).

Deploying the ARM Template

To deploy this template using the Azure CLI:

Key Considerations

SSL Certificate

You can import your SSL certificate into Azure Key Vault or store it as a parameter in the ARM template (like in the example above).

Path-Based Routing

The ARM template above demonstrates routing /api/* to the backend pool.

You can modify paths as needed for your setup.

Web Application Firewall

If you need to enable WAF, refer to the WAF section in the ARM template to apply a WAF policy.

Write in comments, if you need further help on any specific part of the implementation.

 

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.