turbot/steampipe-mod-aws-compliance

Control: AWS Glue machine learning transforms should be encrypted at rest

Description

This control checks whether an AWS Glue machine learning transform is encrypted at rest. The control fails if the machine learning transform isn't encrypted at rest.

Usage

Run the control in your terminal:

powerpipe control run aws_compliance.control.glue_ml_transform_encryption_at_rest_enabled

Snapshot and share results via Turbot Pipes:

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

SQL

This control uses a named query:

select
transform_id as resource,
case
when transform_encryption is not null then 'ok'
else 'alarm'
end as status,
case
when transform_encryption is not null then title || ' encryption at rest enabled.'
else title || ' encryption at rest disabled.'
end as reason
, region, account_id
from
aws_glue_ml_transform;

Tags