standard
turbot/azure_compliance

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

Detect App Services web apps without latest HTTP version and then enable latest HTTP 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
not (configuration -> 'properties' ->> 'http20Enabled') :: boolean;

Schedule

15m

Tags

category = Compliance
plugin = azure
service = Azure/AppService