Remediation
From Azure Console
- 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> \
--resource-group <resource-group> \
--min-tls-version TLS1_2
From Azure PowerShell
To set the minimum TLS version, run the following command:
Set-AzStorageAccount -AccountName <STORAGEACCOUNTNAME> ` -ResourceGroupName <RESOURCEGROUPNAME> ` -MinimumTlsVersion TLS1_2