File tree Expand file tree Collapse file tree 4 files changed +16
-8
lines changed
beta-private-cluster-update-variant
beta-public-cluster-update-variant Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -568,7 +568,8 @@ resource "google_container_node_pool" "pools" {
568
568
dynamic "network_config" {
569
569
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
570
570
content {
571
- pod_range = lookup (network_config. value , " pod_range" , null )
571
+ pod_range = lookup (network_config. value , " pod_range" , null )
572
+ enable_private_nodes = var. enable_private_nodes
572
573
}
573
574
}
574
575
@@ -779,7 +780,8 @@ resource "google_container_node_pool" "windows_pools" {
779
780
dynamic "network_config" {
780
781
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
781
782
content {
782
- pod_range = lookup (network_config. value , " pod_range" , null )
783
+ pod_range = lookup (network_config. value , " pod_range" , null )
784
+ enable_private_nodes = var. enable_private_nodes
783
785
}
784
786
}
785
787
Original file line number Diff line number Diff line change @@ -474,7 +474,8 @@ resource "google_container_node_pool" "pools" {
474
474
dynamic "network_config" {
475
475
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
476
476
content {
477
- pod_range = lookup (network_config. value , " pod_range" , null )
477
+ pod_range = lookup (network_config. value , " pod_range" , null )
478
+ enable_private_nodes = var. enable_private_nodes
478
479
}
479
480
}
480
481
@@ -684,7 +685,8 @@ resource "google_container_node_pool" "windows_pools" {
684
685
dynamic "network_config" {
685
686
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
686
687
content {
687
- pod_range = lookup (network_config. value , " pod_range" , null )
688
+ pod_range = lookup (network_config. value , " pod_range" , null )
689
+ enable_private_nodes = var. enable_private_nodes
688
690
}
689
691
}
690
692
Original file line number Diff line number Diff line change @@ -549,7 +549,8 @@ resource "google_container_node_pool" "pools" {
549
549
dynamic "network_config" {
550
550
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
551
551
content {
552
- pod_range = lookup (network_config. value , " pod_range" , null )
552
+ pod_range = lookup (network_config. value , " pod_range" , null )
553
+ enable_private_nodes = var. enable_private_nodes
553
554
}
554
555
}
555
556
@@ -760,7 +761,8 @@ resource "google_container_node_pool" "windows_pools" {
760
761
dynamic "network_config" {
761
762
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
762
763
content {
763
- pod_range = lookup (network_config. value , " pod_range" , null )
764
+ pod_range = lookup (network_config. value , " pod_range" , null )
765
+ enable_private_nodes = var. enable_private_nodes
764
766
}
765
767
}
766
768
Original file line number Diff line number Diff line change @@ -455,7 +455,8 @@ resource "google_container_node_pool" "pools" {
455
455
dynamic "network_config" {
456
456
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
457
457
content {
458
- pod_range = lookup (network_config. value , " pod_range" , null )
458
+ pod_range = lookup (network_config. value , " pod_range" , null )
459
+ enable_private_nodes = var. enable_private_nodes
459
460
}
460
461
}
461
462
@@ -665,7 +666,8 @@ resource "google_container_node_pool" "windows_pools" {
665
666
dynamic "network_config" {
666
667
for_each = length (lookup (each. value , " pod_range" , " " )) > 0 ? [each . value ] : []
667
668
content {
668
- pod_range = lookup (network_config. value , " pod_range" , null )
669
+ pod_range = lookup (network_config. value , " pod_range" , null )
670
+ enable_private_nodes = var. enable_private_nodes
669
671
}
670
672
}
671
673
You can’t perform that action at this time.
0 commit comments