Hi ypon zairo
To identify resources that may still be using TLS 1.0 or 1.1, you can utilize the following KQL (Kusto Query Language) query in Azure Resource Graph Explorer:
resources | where isnotnull(properties['minimumTlsVersion']) | project name, type,resourceGroup, properties.minimumTlsVersion
reference example:
If any resources are configured to use TLS 1.0 or 1.1, update their settings to enforce TLS 1.2 or later. Before making changes, ensure that your applications and services are compatible with TLS 1.2 or later. This includes verifying that all client applications, libraries, and operating systems support the newer TLS versions.
Please do not forget to "Accept the answer” and “upvote it” wherever the information provided helps you, this can be beneficial to other community members.it would be greatly appreciated and helpful to others.