Skip to content

Commit e550515

Browse files
Remove min_master_version from stack type tests (#10630) (#18120)
[upstream:e54387d0bbd7da370cf5176feb8a48b9b28436b7] Signed-off-by: Modular Magician <[email protected]>
1 parent eb493ce commit e550515

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

google/services/container/resource_container_cluster_test.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -2259,7 +2259,7 @@ func TestAccContainerCluster_stackType_withDualStack(t *testing.T) {
22592259
ResourceName: resourceName,
22602260
ImportState: true,
22612261
ImportStateVerify: true,
2262-
ImportStateVerifyIgnore: []string{"min_master_version", "deletion_protection"},
2262+
ImportStateVerifyIgnore: []string{"deletion_protection"},
22632263
},
22642264
},
22652265
})
@@ -2287,7 +2287,7 @@ func TestAccContainerCluster_stackType_withSingleStack(t *testing.T) {
22872287
ResourceName: resourceName,
22882288
ImportState: true,
22892289
ImportStateVerify: true,
2290-
ImportStateVerifyIgnore: []string{"min_master_version", "deletion_protection"},
2290+
ImportStateVerifyIgnore: []string{"deletion_protection"},
22912291
},
22922292
},
22932293
})
@@ -7028,7 +7028,6 @@ resource "google_container_cluster" "with_stack_type" {
70287028
network = google_compute_network.container_network.name
70297029
subnetwork = google_compute_subnetwork.container_subnetwork.name
70307030
7031-
min_master_version = "1.25"
70327031
initial_node_count = 1
70337032
datapath_provider = "ADVANCED_DATAPATH"
70347033
enable_l4_ilb_subsetting = true
@@ -7064,7 +7063,6 @@ resource "google_container_cluster" "with_stack_type" {
70647063
network = google_compute_network.container_network.name
70657064
subnetwork = google_compute_subnetwork.container_subnetwork.name
70667065
7067-
min_master_version = "1.25"
70687066
initial_node_count = 1
70697067
enable_l4_ilb_subsetting = true
70707068

0 commit comments

Comments
 (0)