Remediation
From Azure Portalβ
- Go to
Application gateways. - Select 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-name}} \
--gateway-name {{application-gateway-name}} \
--name {{ssl-policy-name}} \
--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-name}} \
--gateway-name {{application-gateway-name}} \
--policy-type Custom \
--min-protocol-version {{min-protocol-version}} \
--cipher-suites {{cipher-suites}}