diff --git a/terraform.tfvars b/terraform.tfvars index 8581c08..ae2453c 100644 --- a/terraform.tfvars +++ b/terraform.tfvars @@ -3,8 +3,8 @@ k8s_version = "1.23" region = "us-central" pools = [ { - type : "g6-standard-2" + type : "g6-standard-1" count : 3 - max : 5 + max : 6 } ] diff --git a/variables.tf b/variables.tf index 195358f..a06dfc9 100644 --- a/variables.tf +++ b/variables.tf @@ -33,8 +33,8 @@ variable "pools" { default = [ { type = "g6-standard-1" - count = 1 - max = 1 + count = 3 + max = 3 } ] }