MON-287 quote number values as string for terraform

This commit is contained in:
Quentin Manfroi 2018-08-21 10:32:27 +02:00
parent 07bee09b44
commit bf482dfdbf
2 changed files with 2 additions and 2 deletions

View File

@ -52,5 +52,5 @@ variable "apache_connect_message" {
variable "apache_connect_threshold_critical" { variable "apache_connect_threshold_critical" {
description = "Apache status monitor (critical threshold)" description = "Apache status monitor (critical threshold)"
type = "string" type = "string"
default = 1.1754943508222875e-38 default = "1.1754943508222875e-38"
} }

View File

@ -52,5 +52,5 @@ variable "nginx_connect_message" {
variable "nginx_connect_threshold_critical" { variable "nginx_connect_threshold_critical" {
description = "Nginx status monitor (critical threshold)" description = "Nginx status monitor (critical threshold)"
type = "string" type = "string"
default = 1.1754943508222875e-38 default = "1.1754943508222875e-38"
} }