Update terraform.tfvars, terraform.tf

This commit is contained in:
2022-09-28 11:46:13 +00:00
parent d081989cd3
commit dc7f974243
2 changed files with 6 additions and 1 deletions

View File

@@ -29,6 +29,10 @@ resource "linode_lke_cluster" "foobar" {
content { content {
type = pool.value["type"] type = pool.value["type"]
count = pool.value["count"] count = pool.value["count"]
autoscaler {
min = pool.value["count"]
max = pool.value["max"]
}
} }
} }
provisioner "local-exec" { provisioner "local-exec" {

View File

@@ -4,6 +4,7 @@ region = "us-central"
pools = [ pools = [
{ {
type : "g6-standard-1" type : "g6-standard-1"
count : 3 count : 1
max : 5
} }
] ]