turbot/terraform_aws_compliance

Query: s3_bucket_object_lock_enabled

Usage

powerpipe query terraform_aws_compliance.query.s3_bucket_object_lock_enabled

Steampipe Tables

SQL

select
address as resource,
case
when coalesce(
trim(
attributes_std -> 'object_lock_configuration' ->> 'object_lock_enabled'
),
''
) = 'Enabled' then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (
attributes_std -> 'object_lock_configuration' -> 'object_lock_enabled'
) is null then ' ''object_lock_enabled'' is not defined'
when (
attributes_std -> 'object_lock_configuration' ->> 'object_lock_enabled'
) = 'Enabled' then ' object lock enabled'
else ' object lock not enabled'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'aws_s3_bucket';

Controls

The query is being used by the following controls: