Skip to content

Commit 84ebc7e

Browse files
committed
fix: 1493/Unable to enable private nodes with specified pod ip range
1 parent bcd5e03 commit 84ebc7e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

autogen/main/cluster.tf.tmpl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,8 @@ resource "google_container_node_pool" "windows_pools" {
659659
dynamic "network_config" {
660660
for_each = length(lookup(each.value, "pod_range", "")) > 0 ? [each.value] : []
661661
content {
662-
pod_range = lookup(network_config.value, "pod_range", null)
662+
pod_range = lookup(network_config.value, "pod_range", null)
663+
enable_private_nodes = var.enable_private_nodes
663664
}
664665
}
665666
{% endif %}

0 commit comments

Comments
 (0)