From d902149c8a7f5c382fd1fa1e6708db1d2da32f07 Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Thu, 20 Sep 2018 16:16:08 +0200 Subject: [PATCH] MON-32 fix typo --- cloud/aws/elasticache/common/inputs.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud/aws/elasticache/common/inputs.tf b/cloud/aws/elasticache/common/inputs.tf index 84aaac0..626c639 100644 --- a/cloud/aws/elasticache/common/inputs.tf +++ b/cloud/aws/elasticache/common/inputs.tf @@ -176,19 +176,19 @@ variable "swap_time_aggregator" { variable "swap_timeframe" { description = "Monitor timeframe for Elasticache swap [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`]" - type = = "string" + type = "string" default = "last_5m" } variable "swap_threshold_warning" { description = "Elasticache swap warning threshold in bytes" - type = = "string" + type = "string" default = 0 } variable "swap_threshold_critical" { description = "Elasticache swap critical threshold in bytes" - type = = "string" + type = "string" default = 50000000 }