Remediation
From Azure Portalβ
- Go to
Application gateways. - Click the name of an application gateway.
- Under
Settings, clickListeners. - Under
SSL Policy, next to theSelected SSL Policyname, clickchange. - Select an appropriate SSL policy with a
Min protocol versionofTLSv1_2or higher. - Click
Save. - Repeat steps 1-6 for each application gateway requiring remediation.
From Azure CLIβ
Run the following command to list available SSL policy options:
az network application-gateway ssl-policy list-options
Run the following command to list available predefined SSL policies:
az network application-gateway ssl-policy predefined list
For each application gateway requiring remediation, run the following command to set a predefined SSL policy:
az network application-gateway ssl-policy set /
--resource-group {{resource-group}} /
--gateway-name {{application-gateway}} /
--name {{ssl-policy}} /
--policy-type Predefined
Alternatively, run the following command to set a custom SSL policy:
az network application-gateway ssl-policy set /
--resource-group {{resource-group}} /
--gateway-name {{application-gateway}} /
--policy-type Custom /
--min-protocol-version {{min-protocol-version}} /
--cipher-suites {{cipher-suites}}