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 01ba272 commit d476d03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions aks/postgres/resources.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ locals {

alert_frequency_map = {
PT5M = "PT1M"
PT15M = "PT5M"
PT30M = "PT15M"
PT1H = "PT30M"
PT15M = "PT1M"
PT30M = "PT1M"
PT1H = "PT1M"
PT6H = "PT5M"
PT12H = "PT5M"
}
Expand Down
2 changes: 1 addition & 1 deletion aks/postgres/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ variable "alert_window_size" {
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"
description = "The period of time that is used to monitor alert activity. The interval between checks is adjusted accordingly."
}

variable "azure_maintenance_window" {
Expand Down

0 comments on commit d476d03

Please sign in to comment.