Control: Glue jobs S3 encryption should be enabled
Description
Ensure Glue jobs have S3 encryption enabled to protect sensitive information at rest.
Usage
Run the control in your terminal:
powerpipe control run aws_compliance.control.glue_job_s3_encryption_enabled
Snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe control run aws_compliance.control.glue_job_s3_encryption_enabled --share
SQL
This control uses a named query:
select j.arn as resource, case when e is not null and e ->> 'S3EncryptionMode' != 'DISABLED' then 'ok' else 'alarm' end as status, case when e is not null and e ->> 'S3EncryptionMode' != 'DISABLED' then j.title || ' S3 encryption enabled.' else j.title || ' S3 encryption disabled.' end as reason , j.region, j.account_idfrom aws_glue_job as j left join aws_glue_security_configuration as s on j.security_configuration = s.name, jsonb_array_elements(s.s3_encryption) e;