From 34a189888f41c393cdfaadc15fc32db41e281030 Mon Sep 17 00:00:00 2001 From: "gauthier.ampe@fr.clara.net" Date: Wed, 31 Jul 2019 09:40:56 +0200 Subject: [PATCH] MON-484 Fix value threshold --- cloud/azure/iothubs/inputs.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cloud/azure/iothubs/inputs.tf b/cloud/azure/iothubs/inputs.tf index deca1b7..5bff36d 100644 --- a/cloud/azure/iothubs/inputs.tf +++ b/cloud/azure/iothubs/inputs.tf @@ -567,10 +567,10 @@ variable "invalid_d2c_telemetry_egress_rate_threshold_critical" { variable "too_many_d2c_telemetry_ingress_nosent_rate_threshold_critical" { description = "D2C Telemetry ingress not sent limit (critical threshold)" - default = 10 + default = 20 } variable "too_many_d2c_telemetry_ingress_nosent_rate_threshold_warning" { description = "D2C Telemetry ingress not sent limit (warning threshold)" - default = 20 + default = 10 }