turbot/aws_compliance

Query: acm_certificate_transparency_logging_enabled

Usage

powerpipe query aws_compliance.query.acm_certificate_transparency_logging_enabled

Steampipe Tables

SQL

select
certificate_arn as resource,
case
when type = 'IMPORTED' then 'skip'
when certificate_transparency_logging_preference = 'ENABLED' then 'ok'
else 'alarm'
end as status,
case
when type = 'IMPORTED' then title || ' is imported.'
when certificate_transparency_logging_preference = 'ENABLED' then title || ' transparency logging enabled.'
else title || ' transparency logging disabled.'
end as reason,
region,
account_id
from
aws_acm_certificate;

Controls

The query is being used by the following controls: