turbot/steampipe-mod-terraform-gcp-compliance

Control: GKE clusters should not use cluster level node pool

Description

This control checks if GKE clusters use separate node pool resources since node pools defined in cluster configuration cannot be added or removed without recreating the cluster.

Usage

Run the control in your terminal:

powerpipe control run terraform_gcp_compliance.control.kubernetes_cluster_no_cluster_level_node_pool

Snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe control run terraform_gcp_compliance.control.kubernetes_cluster_no_cluster_level_node_pool --share

SQL

This control uses a named query:

select
address as resource,
case
when (attributes_std -> 'node_pool') is not null then 'alarm'
else 'ok'
end as status,
split_part(address, '.', 2) || case
when (attributes_std -> 'node_pool') is not null then ' node pool defined in cluster configuration'
else ' node pool not defined in cluster configuration'
end || '.' reason
, path || ':' || start_line
from
terraform_resource
where
type = 'google_container_cluster';

Tags