Skip to content

Commit a68cda9

Browse files
committed
change to null
1 parent e4b6524 commit a68cda9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

variables.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ variable "source_path" {
239239

240240
variable "logging_application_log_level" {
241241
type = string
242-
default = "INFO"
242+
default = null
243243
validation {
244-
condition = contains(["TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL"], var.logging_application_log_level)
244+
condition = contains(["TRACE", "DEBUG", "INFO", "WARN", "ERROR", "FATAL", null], var.logging_application_log_level)
245245
error_message = "Valid values for logging_info.application_log_level are (TRACE, DEBUG, INFO, WARN, ERROR, FATAL)."
246246
}
247247
}
@@ -258,14 +258,14 @@ variable "logging_log_format" {
258258

259259
variable "logging_log_group" {
260260
type = string
261-
default = ""
261+
default = null
262262
}
263263

264264
variable "logging_system_log_level" {
265265
type = string
266-
default = "INFO"
266+
default = null
267267
validation {
268-
condition = contains(["DEBUG", "INFO", "WARN"], var.logging_system_log_level)
268+
condition = contains(["DEBUG", "INFO", "WARN", null], var.logging_system_log_level)
269269
error_message = "Valid values for logging_info.system_log_level are (DEBUG, INFO, WARN)."
270270
}
271271
}

0 commit comments

Comments
 (0)