Remediation
From Azure Portalโ
- Go to the Azure portal.
- Select
App Services. - Select an app.
- Select
Settingsand thenConfiguration. - Under
General Settings, inPlatform Settings, setFTP statetoDisabledorFTPS Only.
From Azure CLIโ
For each out-of-compliance application, run the following, choosing either disabled or FtpsOnly as appropriate:
az webapp config set \
--resource-group {{resource-group-name}} \
--name {{app-name}} \
--ftps-state [disabled|FtpsOnly]
From PowerShellโ
For each out-of-compliance application, run the following:
Set-AzWebApp `
-ResourceGroupName {{resource-group-name}} `
-Name {{app-name}} `
-FtpsState {{Disabled or FtpsOnly}}