Skip to content

Commit

Permalink
empty
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacome committed Jan 17, 2025
1 parent b408592 commit eacd4d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
10 changes: 3 additions & 7 deletions tests/tofu/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,10 @@ resource "google_container_cluster" "primary" {

private_cluster_config {
enable_private_nodes = true
# private_endpoint_subnetwork = google_compute_subnetwork.subnet.self_link
master_ipv4_cidr_block = "172.16.0.0/28"
private_endpoint_subnetwork = google_compute_subnetwork.subnet.self_link
# master_ipv4_cidr_block = "172.16.0.0/28"
}
ip_allocation_policy {
# cluster_ipv4_cidr_block = google_compute_subnetwork.subnet.ip_cidr_range
stack_type = "IPV4_IPV6"
}
datapath_provider = "ADVANCED_DATAPATH"
ip_allocation_policy {}
}

resource "google_container_node_pool" "primary_nodes" {
Expand Down
2 changes: 0 additions & 2 deletions tests/tofu/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ resource "google_compute_subnetwork" "subnet" {
network = google_compute_network.vpc.self_link
ip_cidr_range = "10.10.0.0/24"
private_ip_google_access = true
stack_type = "IPV4_IPV6"
ipv6_access_type = "EXTERNAL"
}

resource "google_compute_router" "router" {
Expand Down

0 comments on commit eacd4d6

Please sign in to comment.