turbot/terraform_azure_compliance

Query: appservice_web_app_diagnostic_logs_enabled

Usage

powerpipe query terraform_azure_compliance.query.appservice_web_app_diagnostic_logs_enabled

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'logs') is null then 'alarm'
when (
attributes_std -> 'logs' ->> 'detailed_error_messages_enabled'
) :: boolean
and (
attributes_std -> 'logs' ->> 'failed_request_tracing_enabled'
) :: boolean
and (attributes_std -> 'logs' -> 'http_logs') is not null then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'logs') is null then ' ''logs'' not defined'
when (
attributes_std -> 'logs' ->> 'detailed_error_messages_enabled'
) :: boolean
and (
attributes_std -> 'logs' ->> 'failed_request_tracing_enabled'
) :: boolean
and (
attributes_std -> 'logs' -> 'http_logs' -> 'file_system'
) is not null then ' diagnostic logs enabled'
else ' diagnostic logs disabled'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'azurerm_app_service';

Controls

The query is being used by the following controls: