From f64540a8f576c01fa50bfa7e98fde7ccb8ef7da9 Mon Sep 17 00:00:00 2001 From: Moritz Graf Date: Sun, 5 Jul 2026 07:45:56 +0200 Subject: [PATCH] Reducing buffer for humidity from 15 to 5 % --- terraform_shelly/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform_shelly/variables.tf b/terraform_shelly/variables.tf index 3fcc853..d0fdaad 100644 --- a/terraform_shelly/variables.tf +++ b/terraform_shelly/variables.tf @@ -71,5 +71,5 @@ variable "critical_humi_ref_temp" { variable "critical_humi_buffer" { type = number description = "Safety buffer [%] subtracted from the critical relative humidity threshold" - default = 15 + default = 5 }