LOW
Source
Trivy
ID
AVD-GCP-0052

Stackdriver Monitoring should be enabled

StackDriver monitoring aggregates logs, events, and metrics from your Kubernetes environment on GKE to help you understand your application’s behavior in production.

Impact

Follow the appropriate remediation steps below to resolve the issue.

Enable StackDriver monitoring

1
2
3
4
5
resource "google_container_cluster" "good_example" {
  name               = "my-gke-cluster"
  location           = "us-central1"
  monitoring_service = "monitoring.googleapis.com/kubernetes"
}