From 0544c40cccd052ffea869b4c68ef8f5de1d2a185 Mon Sep 17 00:00:00 2001 From: Ahmed Fourti Date: Fri, 24 Nov 2017 10:26:16 +0100 Subject: [PATCH] MON-88 Fix ELB Latency Tresholds --- inputs.tf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/inputs.tf b/inputs.tf index df8219c..3571c39 100644 --- a/inputs.tf +++ b/inputs.tf @@ -95,9 +95,10 @@ variable "elb_4xx_threshold" { } variable "elb_backend_latency" { + description = "Average time elapsed after the request leaves the load balancer until a response is received. In seconds" default = { - warning = 1000 - critical = 5000 + warning = 1 + critical = 5 } }