turbot/steampipe-mod-terraform-aws-compliance

Control: S3 bucket object lock should be enabled

Description

Ensure that your Amazon Simple Storage Service (Amazon S3) bucket has lock enabled, by default.

Usage

Run the control in your terminal:

powerpipe control run terraform_aws_compliance.control.s3_bucket_object_lock_enabled

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run terraform_aws_compliance.control.s3_bucket_object_lock_enabled --share

SQL

This control uses a named query:

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';

Tags