turbot/steampipe-mod-aws-compliance

Control: EFS file system encryption at rest should be enabled

Description

Because sensitive data can exist and to help protect data at rest, ensure encryption is enabled for your AWS Elastic File System (EFS).

Usage

Run the control in your terminal:

powerpipe control run aws_compliance.control.efs_file_system_encrypt_data_at_rest

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run aws_compliance.control.efs_file_system_encrypt_data_at_rest --share

SQL

This control uses a named query:

select
arn as resource,
case
when encrypted then 'ok'
else 'alarm'
end as status,
case
when encrypted then title || ' encrypted at rest.'
else title || ' not encrypted at rest.'
end as reason
, region, account_id
from
aws_efs_file_system;

Tags