HIGH
Source
Trivy
ID
AVD-GCP-0057

Node metadata value disables metadata concealment.

If the workload_metadata_config block within node_config is included, the node_metadata attribute should be configured securely.

The attribute should be set to SECURE to use metadata concealment, or GKE_METADATA_SERVER if workload identity is enabled. This ensures that the VM metadata is not unnecessarily exposed to pods.

Impact

Metadata that isn’t concealed potentially risks leakage of sensitive data

Follow the appropriate remediation steps below to resolve the issue.

Set node metadata to SECURE or GKE_METADATA_SERVER

1
2
3
4
5
6
7
 resource "google_container_node_pool" "good_example" {
 	node_config {
 		workload_metadata_config {
 			node_metadata = "SECURE"
 		}
 	}
 }