Remediation
From Azure Portalโ
- Log in to the Azure portal using https://portal.azure.com.
- Go to
App Services. - Select each app.
- Under
Settings, selectSSL settings. - Under the
Bindingspane, setMinimum TLS Versionto1.2underProtocol Settingssection.
From Azure CLIโ
To set the TLS version for an existing app, run the following command:
az webapp config set \
--resource-group {{resource-group-name}} \
--name {{app-name}} \
--min-tls-version 1.2
From PowerShellโ
Set-AzWebApp `
-ResourceGroupName {{resource-group-name}} `
-Name {{app-name}} `
-MinTlsVersion 1.2