turbot/steampipe-mod-aws-compliance

Query: msk_cluster_unauthenticated_access_disabled

Usage

powerpipe query aws_compliance.query.msk_cluster_unauthenticated_access_disabled

Steampipe Tables

SQL

select
arn as resource,
case
when not (provisioned -> 'ClientAuthentication' -> 'Unauthenticated' -> 'Enabled')::bool then 'ok'
else 'alarm'
end as status,
case
when not (provisioned -> 'ClientAuthentication' -> 'Unauthenticated' -> 'Enabled')::bool then title || ' unauthenticated access disabled.'
else title || ' unauthenticated access enabled.'
end as reason
, region, account_id
from
aws_msk_cluster;

Controls

The query is being used by the following controls: