We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92ebb00 commit 45cd608Copy full SHA for 45cd608
cluster.tf
@@ -331,8 +331,9 @@ resource "google_container_node_pool" "pools" {
331
dynamic "autoscaling" {
332
for_each = lookup(each.value, "autoscaling", true) ? [each.value] : []
333
content {
334
- min_node_count = lookup(autoscaling.value, "min_count", 1)
335
- max_node_count = lookup(autoscaling.value, "max_count", 100)
+ location_policy = "BALANCED"
+ min_node_count = lookup(autoscaling.value, "min_count", 1)
336
+ max_node_count = lookup(autoscaling.value, "max_count", 100)
337
}
338
339
0 commit comments