standard
turbot/azure_compliance

Trigger: Detect & correct App Service web apps without the latest TLS version

Detect App Services web apps without the latest TLS version and then enable latest TLS version.

Query

select
concat(
app.id,
' [',
app.subscription_id,
'/',
app.resource_group,
']'
) as title,
app.id as id,
app.name,
app.resource_group,
app.subscription_id,
app._ctx ->> 'connection_name' as conn
from
azure_app_service_web_app as app
where
configuration -> 'properties' ->> 'minTlsVersion' < '1.2';

Schedule

15m

Tags

category = Compliance
plugin = azure
service = Azure/AppService