turbot/terraform_aws_compliance

Query: msk_cluster_nodes_publicly_accessible

Usage

powerpipe query terraform_aws_compliance.query.msk_cluster_nodes_publicly_accessible

Steampipe Tables

SQL

select
address as resource,
case
when (attributes_std -> 'broker_node_group_info' -> 'connectivity_info' -> 'public_access' ->> 'type') = 'SERVICE_PROVIDED_EIPS' then 'alarm'
else 'ok'
end as status,
split_part(address, '.', 2) || case
when (attributes_std -> 'broker_node_group_info' -> 'connectivity_info' -> 'public_access' ->> 'type') = 'SERVICE_PROVIDED_EIPS' then ' cluster nodes are public'
else ' cluster nodes are private'
end || '.' as reason
, path || ':' || start_line
from
terraform_resource
where
type = 'aws_msk_cluster';

Controls

The query is being used by the following controls: