Skip to content

Instantly share code, notes, and snippets.

@cbattlegear
Created August 20, 2020 19:40
Show Gist options
  • Save cbattlegear/08bc95b7e96d27daee29a578c0587466 to your computer and use it in GitHub Desktop.
Save cbattlegear/08bc95b7e96d27daee29a578c0587466 to your computer and use it in GitHub Desktop.
Azure CLI command to list minimum TLS version for all Azure WebApps
# Run in Bash Azure Cloud Shell
webapps=$(az webapp list --query [].id -o tsv)
az webapp config show --ids $webapps --query "[].{WebApp:name,ResourceGroup:resourceGroup,minTlsVersion:minTlsVersion}" -o table
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment