0.0
medium
0
10
    Severity Framework Snyk CCSS
    Rule category Containers / Security

Is your enviroment affected by this misconfiguration?

In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.

Test your applications
    Frameworks
    CIS-Controls
  • Snyk ID SNYK-CC-00417
  • credit Snyk Research Team

Description

GKE Stack driver monitoring is disabled.

How to fix?

Set monitoring_service attribute to monitoring.googleapis.com/kubernetes or remove attribute.

Example Configuration

resource "google_container_cluster" "allowed_3" {
  name                     = "node-pool417"
  location                 = "us-central1-f"
  monitoring_service       = "monitoring.googleapis.com/kubernetes"
  project                  = "test-project"
  remove_default_node_pool = true
  initial_node_count       = 1
}