From 724f19aa06b084f4d4c93522dcf006f87ad60f67 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Wed, 28 Sep 2022 20:43:56 +0000 Subject: [PATCH] Update terraform.tfvars, variables.tf --- terraform.tfvars | 4 ++-- variables.tf | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 } ] }