turbot/steampipe-mod-aws-compliance

Control: EMR clusters encryption at rest should be enabled

Description

This control checks whether EMR clusters have encryption at rest enabled. The check fails if encryption at rest is not enabled as sensitive data should be protected.

Usage

Run the control in your terminal:

powerpipe control run aws_compliance.control.emr_cluster_encryption_at_rest_enabled

Snapshot and share results via Turbot Pipes:

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

SQL

This control uses a named query:

select
cluster_arn as resource,
case
when s.name is null then 'alarm'
when s.name is not null and (encryption_configuration -> 'EnableAtRestEncryption')::bool then 'ok'
else 'alarm'
end as status,
case
when s.name is null then c.title || ' security configuration disabled.'
when s.name is not null and (encryption_configuration -> 'EnableAtRestEncryption')::bool then c.title || ' encryption at rest enabled.'
else c.title || ' encryption at rest disabled.'
end as reason
, c.region, c.account_id
from
aws_emr_cluster as c
left join aws_emr_security_configuration as s on c.security_configuration = s.name and s.region = s.region and s.account_id = c.account_id;

Tags