turbot/terraform_gcp_compliance

Query: dataproc_cluster_public_ip_disabled

Usage

powerpipe query terraform_gcp_compliance.query.dataproc_cluster_public_ip_disabled

Steampipe Tables

SQL

select
address as resource,
case
when (
attributes_std -> 'cluster_config' -> 'gce_cluster_config' ->> 'internal_ip_only'
) = 'true' then 'ok'
else 'alarm'
end as status,
split_part(address, '.', 2) || case
when (
attributes_std -> 'cluster_config' -> 'gce_cluster_config' ->> 'internal_ip_only'
) = 'true' then ' is not accessible from the public internet'
else ' is accessible from the public internet'
end || '.' reason,
path || ':' || start_line
from
terraform_resource
where
type = 'google_dataproc_cluster';

Controls

The query is being used by the following controls: