From 4b25f41bf723377043c0efd3eb7f0d83642f96c3 Mon Sep 17 00:00:00 2001 From: Julien Jourdain Date: Fri, 14 Jan 2022 16:03:22 +0100 Subject: [PATCH] fix: default value --- variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.tf b/variables.tf index c8dbf2e..ca6b3b9 100644 --- a/variables.tf +++ b/variables.tf @@ -66,7 +66,7 @@ variable "log_config_enable" { variable "log_config_filter" { description = "Specifies the desired filtering of logs on this NAT. Possible values are ERRORS_ONLY, TRANSLATIONS_ONLY, and ALL." type = string - default = "ERRORS_ONLY." + default = "ERRORS_ONLY" } variable "peerings" {