Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
saliceti committed Jul 29, 2024
1 parent b18d68a commit 164bd11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aks/postgres/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ variable "alert_window_size" {
nullable = false
default = "PT5M"
validation {
condition = contains(["PT1M", "PT5M", "PT15M", "PT30M", "PT1H"], var.alert_window_size)
error_message = "The alert_window_size must be one of: PT1M, PT5M, PT15M, PT30M, PT1H."
condition = contains(["PT1M", "PT5M", "PT15M", "PT30M", "PT1H", "PT6H", "PT12H"], var.alert_window_size)
error_message = "The alert_window_size must be one of: PT1M, PT5M, PT15M, PT30M, PT1H, PT6H, PT12H"
}
description = "The period of time that is used to monitor alert activity e.g PT1M, PT5M, PT15M, PT30M, PT1H, PT6H or PT12H"
}
Expand Down

0 comments on commit 164bd11

Please sign in to comment.