File tree 2 files changed +3
-9
lines changed
2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,10 @@ resource "google_container_cluster" "primary" {
55
55
56
56
private_cluster_config {
57
57
enable_private_nodes = true
58
- # private_endpoint_subnetwork = google_compute_subnetwork.subnet.self_link
59
- master_ipv4_cidr_block = " 172.16.0.0/28"
58
+ private_endpoint_subnetwork = google_compute_subnetwork. subnet . self_link
59
+ # master_ipv4_cidr_block = "172.16.0.0/28"
60
60
}
61
- ip_allocation_policy {
62
- # cluster_ipv4_cidr_block = google_compute_subnetwork.subnet.ip_cidr_range
63
- stack_type = " IPV4_IPV6"
64
- }
65
- datapath_provider = " ADVANCED_DATAPATH"
61
+ ip_allocation_policy {}
66
62
}
67
63
68
64
resource "google_container_node_pool" "primary_nodes" {
Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ resource "google_compute_subnetwork" "subnet" {
9
9
network = google_compute_network. vpc . self_link
10
10
ip_cidr_range = " 10.10.0.0/24"
11
11
private_ip_google_access = true
12
- stack_type = " IPV4_IPV6"
13
- ipv6_access_type = " EXTERNAL"
14
12
}
15
13
16
14
resource "google_compute_router" "router" {
You can’t perform that action at this time.
0 commit comments