Skip to content

Commit

Permalink
Merge pull request #1803 from aztfmod/fix
Browse files Browse the repository at this point in the history
Fix regression sqlmi
  • Loading branch information
arnaudlh authored Sep 19, 2023
2 parents 7a1bcf3 + 45630d6 commit 0e8c991
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 0e8c991

Please sign in to comment.