Skip to content

Commit 16b0712

Browse files
committed
empty
1 parent 50c7850 commit 16b0712

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

tests/tofu/main.tf

+3-7
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,10 @@ resource "google_container_cluster" "primary" {
5555

5656
private_cluster_config {
5757
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"
6060
}
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 {}
6662
}
6763

6864
resource "google_container_node_pool" "primary_nodes" {

tests/tofu/network.tf

-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ resource "google_compute_subnetwork" "subnet" {
99
network = google_compute_network.vpc.self_link
1010
ip_cidr_range = "10.10.0.0/24"
1111
private_ip_google_access = true
12-
stack_type = "IPV4_IPV6"
13-
ipv6_access_type = "EXTERNAL"
1412
}
1513

1614
resource "google_compute_router" "router" {

0 commit comments

Comments
 (0)