Skip to content

Commit

Permalink
refactor: Change variables default value
Browse files Browse the repository at this point in the history
  - enable_log_file_validation ('null' to 'true')
  - is_multi_region_trail ('null' to 'true')
  • Loading branch information
uyggnodoow committed Mar 16, 2024
1 parent 030821b commit cb5c0a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ variable "enable_logging" {
variable "enable_log_file_validation" {
description = "(Optional) Whether log file integrity validation is enabled. Defaults to false."
type = bool
default = null
default = true
}

variable "sns_topic_name" {
Expand All @@ -31,7 +31,7 @@ variable "sns_topic_name" {
variable "is_multi_region_trail" {
description = "(Optional) Whether the trail is created in the current region or in all regions. Defaults to false."
type = bool
default = null
default = true
}

variable "include_global_service_events" {
Expand Down

0 comments on commit cb5c0a0

Please sign in to comment.