We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38bb104 commit 73ad518Copy full SHA for 73ad518
gke/standard/zonal/secondary-boot-disk/main.tf
@@ -19,8 +19,11 @@ resource "google_container_cluster" "default" {
19
name = "default"
20
location = "us-central1-a"
21
initial_node_count = 1
22
- # Set `min_master_version` because secondary_boot_disks require GKE 1.28.3-gke.106700 or later.
23
- min_master_version = "1.28"
+
+ # secondary_boot_disks require GKE 1.28.3-gke.106700 or later, which should
24
+ # be true for all release channels apart from EXTENDED.
25
+ # If required, Use `release_channel = "EXTENDED"` and set `min_master_version`.
26
27
# Setting `deletion_protection` to `true` would prevent
28
# accidental deletion of this instance using Terraform.
29
deletion_protection = false
0 commit comments