From 0c07a774552c82d4ac6747c9d856f0fded898981 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Wed, 28 Sep 2022 11:48:18 +0000 Subject: [PATCH] Update variables.tf --- variables.tf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index 5b4bcf8..195358f 100644 --- a/variables.tf +++ b/variables.tf @@ -28,11 +28,13 @@ variable "pools" { type = list(object({ type = string count = number + max = string })) default = [ { type = "g6-standard-1" - count = 3 + count = 1 + max = 1 } ] }