turbot/terraform_aws_compliance

Query: docdb_cluster_encrypted_with_kms

Usage

powerpipe query terraform_aws_compliance.query.docdb_cluster_encrypted_with_kms

Steampipe Tables

SQL

select
address as resource,
case
when
(attributes_std ->> 'storage_encrypted')::boolean
and coalesce(trim(attributes_std ->> 'kms_key_id'), '') <> ''
then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when
(attributes_std ->> 'storage_encrypted')::boolean
and coalesce(trim(attributes_std ->> 'kms_key_id'), '') <> ''
then ' encrypted at rest using KMS CMK'
else ' not encrypted at rest using KMS CMK'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_docdb_cluster';

Controls

The query is being used by the following controls: