Skip to content

Commit

Permalink
Fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentLesle committed Sep 19, 2023
1 parent 7a1bcf3 commit 45630d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ variable "short_term_retention_days" {
nullable = true

validation {
condition = var.short_term_retention_day == null ? true : var.short_term_retention_days >= 1
condition = var.short_term_retention_days == null ? true : var.short_term_retention_days >= 1

error_message = format("Not supported value: '%s'. \nAdjust your configuration file with a supported value of 1 or more days", var.short_term_retention_days)
}
Expand Down

0 comments on commit 45630d6

Please sign in to comment.