Skip to content

Use two or more Application Gateway instances#

Reliability · Application Gateway · Rule · 2020_06 · Important

Application Gateways should use a minimum of two instances.

Description#

Application Gateways should use two or more instances to be covered by the Service Level Agreement (SLA). By having two or more instances this allows the App Gateway to meet high availability requirements and reduce downtime.

Recommendation#

When using Application Gateway v1 or v2 with auto-scaling disabled, specify the number of instances to be two or more. When auto-scaling is enabled with Application Gateway v2, configure the minimum number of instances to be two or more.

Examples#

Configure with Azure template#

To set capacity for an Application gateway

Autoscaling:

  • Set autoscaleConfiguration.minCapacity to any or all of 2.

Manual Scaling:

  • Set sku.capacitiy to 2 or more.

For example:

Azure Template snippet
{
  "name": "appGw-001",
  "type": "Microsoft.Network/applicationGateways",
  "apiVersion": "2019-09-01",
  "location": "[resourceGroup().location]",
  "zones": [
    "1",
    "2",
    "3"
  ],
  "properties": {
    "sku": {
      "capacity": 2, // Manual Scale
      "name": "WAF_v2",
      "tier": "WAF_v2"
    },
    "autoscaleConfiguration": { //Autoscale
      "minCapacity": 2,
      "maxCapacity": 3
    },
    "webApplicationFirewallConfiguration": {
      "enabled": true,
      "firewallMode": "Detection",
      "ruleSetType": "OWASP",
      "ruleSetVersion": "3.0"
    }
  }
}

Configure with Bicep#

To set capacity for an Application gateway

Autoscaling:

  • Set autoscaleConfiguration.minCapacity to any or all of 2.

Manual Scaling:

  • Set sku.capacitiy to 2 or more.

For example:

Azure Bicep snippet
resource name_resource 'Microsoft.Network/applicationGateways@2019-09-01' = {
  name: 'appGw-001'
  location: location
  zones: [
    '1'
    '2'
    '3'
  ]
  properties: {
    sku: {
      capacity: 2 // Manual scale
      name: 'WAF_v2'
      tier: 'WAF_v2'
    }
    autoscaleConfiguration: { // Autoscale
      minCapacity: 1
      maxCapacity: 2
    }
    webApplicationFirewallConfiguration: {
      enabled: true
      firewallMode: 'Detection'
      ruleSetType: 'OWASP'
      ruleSetVersion: '3.0'
    }
  }
}

Comments