turbot/steampipe-mod-terraform-aws-compliance

Control: ECR repository should be encrypted with KMS

Description

Ensure ECR repositories being created are set to be encrypted at rest using KMS CMK.

Usage

Run the control in your terminal:

powerpipe control run terraform_aws_compliance.control.ecr_repository_encrypted_with_kms

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run terraform_aws_compliance.control.ecr_repository_encrypted_with_kms --share

SQL

This control uses a named query:

select
address as resource,
case
when
(attributes_std ->> 'encryption_configuration') is not null
and coalesce((attributes_std -> 'encryption_configuration' ->> 'encryption_type'), '') = 'KMS'
then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when
(attributes_std ->> 'encryption_configuration') is not null
and coalesce((attributes_std -> 'encryption_configuration' ->> 'encryption_type'), '') = 'KMS'
then ' encrypted using KMS'
else ' not encrypted using KMS'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_ecr_repository';

Tags