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 335c62a commit 14259b5Copy full SHA for 14259b5
cluster.tf
@@ -324,8 +324,9 @@ resource "google_container_node_pool" "pools" {
324
dynamic "autoscaling" {
325
for_each = lookup(each.value, "autoscaling", true) ? [each.value] : []
326
content {
327
- min_node_count = lookup(autoscaling.value, "min_count", 1)
328
- max_node_count = lookup(autoscaling.value, "max_count", 100)
+ location_policy = "BALANCED"
+ min_node_count = lookup(autoscaling.value, "min_count", 1)
329
+ max_node_count = lookup(autoscaling.value, "max_count", 100)
330
}
331
332
0 commit comments