Need to get the TLS version for App service using Azure Resource Graph Explorer

Sandeep Saini 46 Reputation points
2023-01-27T08:34:37.0066667+00:00

Hi,

I need to get a list of Azure App Service along with the minimum supported TLS version for each. I have tried using the resources table as below but the TLS version details do not seem to be available in this:

Resources
| where type =~ 'Microsoft.Web/sites' 

Request you to guide me in this.

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,257 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Grmacjon-MSFT 18,816 Reputation points
    2023-01-31T16:40:22.0766667+00:00

    Hi @Sandeep Saini

    Thanks for the question. I don't believe it's possible to get that info via Azure Resource Graph Explorer, but you can try this:

    GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/sites/{name}/config/web?api-version=2022-03-01

    SupportedTlsVersions: MinTlsVersion: configures the minimum version of TLS required for SSL requests

    Hope that helps. Please let us know if you have further questions

    Thanks,

    Grace

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.