Remediation
From Azure Portal
- Go to
Storage Accounts. - For each storage account, under
Settings, clickConfiguration. - Set the
Minimum TLS versiontoVersion 1.2. - Click
Save.
From Azure CLI
az storage account update \
--name {{storage-account-name}} \
--resource-group {{resource-group-name}} \
--min-tls-version TLS1_2
From Azure PowerShell
To set the minimum TLS version, run the following command:
Set-AzStorageAccount `
-AccountName {{storage-account-name}} `
-ResourceGroupName {{resource-group-name}} `
-MinimumTlsVersion TLS1_2