Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1.68 KB

File metadata and controls

39 lines (27 loc) · 1.68 KB
ms.service resource-graph
ms.topic include
ms.date 12/13/2023
author jaspkaur28
ms.author jaspkaur

List Azure App Service TLS version

List an Azure App Service's minimum Transport Layer Security (TLS) version for incoming requests to a web app.

AppServiceResources
| where type =~ 'microsoft.web/sites/config'
| project id, name, properties.MinTlsVersion
az graph query -q "AppServiceResources | where type =~ 'microsoft.web/sites/config' | project id, name, properties.MinTlsVersion"
Search-AzGraph -Query "AppServiceResources | where type =~ 'microsoft.web/sites/config' | project id, name, properties.MinTlsVersion"