Hi Glenn,
Thanks for your post. To determine the incoming TLS version for Azure Storage, you can enable logging for your Azure Storage account and analyze the logs after an interval of time to detect what versions of TLS client applications are using and you can use this MS-Document to monitor the storage.
Here is a sample query to determine which clients made requests with a version of TLS older than TLS 1.2 over the past seven days:
Query:
StorageBlobLogs
| where AccountName == "<your-storage account-name>" and TlsVersion != "TLS 1.2"
| project TlsVersion, CallerIpAddress, UserAgentHeader
Reference: tls1.2 - How to determine incoming TLS version for Azure Storage - Stack Overflow
Note: This is a non-Microsoft website. The page appears to be providing accurate, safe information. Watch out for ads on the site that may advertise products frequently classified as a PUP (Potentially Unwanted Products). Thoroughly research any product advertised on the site before you decide to download and install it. Hope this helps.
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.