Hi @Paritosh Mishra,
Azure services that support TLS include Azure storage, API Management, App Service, Application Gateway, Cosmos DB, SQL Database, Event Hubs, Key Vault, Logic Apps, Service Bus, Functions, and many others used for secure communication and data protection.
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 let me know if you face any challenge here, I can help you to resolve this issue further
Provide your valuable Comments.
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.