Skip to content

Files

Latest commit

 

History

History
27 lines (18 loc) · 573 Bytes

google-gke-node-shielding-enabled.md

File metadata and controls

27 lines (18 loc) · 573 Bytes

Pattern: Disabled shielding for GKE node

Issue: -

Description

Shielded GKE Nodes provide strong, verifiable node identity and integrity to increase the security of GKE nodes and should be enabled on all GKE clusters.

Resolution: Enable node shielding.

Examples

Example of incorrect code:

resource "google_container_cluster" "bad_example" {
	enable_shielded_nodes = "false"
}

Example of correct code:

resource "google_container_cluster" "good_example" {
	enable_shielded_nodes = "true"
}