turbot/aws_compliance

Query: es_domain_audit_logging_enabled

Usage

powerpipe query aws_compliance.query.es_domain_audit_logging_enabled

Steampipe Tables

SQL

select
arn as resource,
case
when log_publishing_options -> 'AUDIT_LOGS' -> 'Enabled' = 'true'
and log_publishing_options -> 'AUDIT_LOGS' -> 'CloudWatchLogsLogGroupArn' is not null then 'ok'
else 'alarm'
end as status,
case
when log_publishing_options -> 'AUDIT_LOGS' -> 'Enabled' = 'true'
and log_publishing_options -> 'AUDIT_LOGS' -> 'CloudWatchLogsLogGroupArn' is not null then title || ' audit logging enabled.'
else title || ' audit logging disabled.'
end as reason,
region,
account_id
from
aws_elasticsearch_domain;

Controls

The query is being used by the following controls: