turbot/azure_compliance

Query: appservice_web_app_latest_tls_version

Usage

powerpipe query azure_compliance.query.appservice_web_app_latest_tls_version

SQL

select
app.id as resource,
case
when configuration -> 'properties' ->> 'minTlsVersion' < '1.2' then 'alarm'
else 'ok'
end as status,
case
when configuration -> 'properties' ->> 'minTlsVersion' < '1.2' then name || ' not using the latest version of TLS encryption.'
else name || ' using the latest version of TLS encryption.'
end as reason,
app.resource_group as resource_group,
sub.display_name as subscription
from
azure_app_service_web_app as app,
azure_subscription as sub
where
sub.subscription_id = app.subscription_id;

Controls

The query is being used by the following controls: