turbot/terraform_aws_compliance

Query: s3_bucket_mfa_delete_enabled

Usage

powerpipe query terraform_aws_compliance.query.s3_bucket_mfa_delete_enabled

Steampipe Tables

SQL

select
address as resource,
case
when coalesce(trim(lower(attributes_std -> 'versioning' ->> 'mfa_delete')), '') in ('true', 'false') and (attributes_std -> 'versioning' ->> 'mfa_delete')::bool then 'ok'
else 'alarm'
end status,
split_part(address, '.', 2) || case
when (attributes_std -> 'versioning' ->> 'mfa_delete')::bool then ' MFA delete enabled'
else ' MFA delete disabled'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_s3_bucket';

Controls

The query is being used by the following controls: