From bf482dfdbf469ed969cad7ef5df80b3075cdfb47 Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Tue, 21 Aug 2018 10:32:27 +0200 Subject: [PATCH] MON-287 quote number values as string for terraform --- middleware/apache/inputs.tf | 2 +- middleware/nginx/inputs.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/middleware/apache/inputs.tf b/middleware/apache/inputs.tf index 7a158d5..59ab8fb 100644 --- a/middleware/apache/inputs.tf +++ b/middleware/apache/inputs.tf @@ -52,5 +52,5 @@ variable "apache_connect_message" { variable "apache_connect_threshold_critical" { description = "Apache status monitor (critical threshold)" type = "string" - default = 1.1754943508222875e-38 + default = "1.1754943508222875e-38" } diff --git a/middleware/nginx/inputs.tf b/middleware/nginx/inputs.tf index 9b900f8..4c76c37 100644 --- a/middleware/nginx/inputs.tf +++ b/middleware/nginx/inputs.tf @@ -52,5 +52,5 @@ variable "nginx_connect_message" { variable "nginx_connect_threshold_critical" { description = "Nginx status monitor (critical threshold)" type = "string" - default = 1.1754943508222875e-38 + default = "1.1754943508222875e-38" }