Control: 3 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.
Data at rest refers to data that's stored in persistent, non-volatile storage for any duration. Encrypting data at rest helps you protect its confidentiality, which reduces the risk that an unauthorized user can access it.
Remediation
To configure encryption for AWS Glue machine learning transforms, see Working with machine learning transforms in the AWS Glue User Guide.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.foundational_security_glue_3
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.foundational_security_glue_3 --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_idfrom aws_glue_ml_transform;