turbot/terraform_aws_compliance

Query: msk_cluster_encryption_in_transit_enabled

Usage

powerpipe query terraform_aws_compliance.query.msk_cluster_encryption_in_transit_enabled

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'encryption_info') is null then 'alarm'
when ((attributes_std -> 'encryption_info' ->> 'client_broker') = 'TLS' and (attributes_std -> 'encryption_info' ->> 'in_cluster')::bool) then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when (attributes_std -> 'encryption_info') is null then ' not encrypted'
when ((attributes_std -> 'encryption_info' ->> 'client_broker') = 'TLS' and (attributes_std -> 'encryption_info' ->> 'in_cluster')::bool) then ' encryption in transit enabled'
else ' encryption in transit disabled'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_msk_cluster';

Controls

The query is being used by the following controls: