From c6a39c05da210c986cc51d4a5383b80b4ceb4847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 9 Aug 2019 16:09:49 -0400 Subject: [PATCH] use minimum 2 hosts for prod EB autoscaling group MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- prod.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prod.tf b/prod.tf index a67f966..1bc9d42 100644 --- a/prod.tf +++ b/prod.tf @@ -68,6 +68,6 @@ module "prod_env" { /* Scaling */ instance_type = "t2.micro" - autoscale_min = 1 + autoscale_min = 2 autoscale_max = 6 }