Skip to content

Commit

Permalink
Merge pull request #395 from ministryofjustice/ok_actions
Browse files Browse the repository at this point in the history
ok_actions
  • Loading branch information
wullub authored Jun 13, 2024
2 parents 5e82148 + 6ca395a commit ebf373a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,7 @@ resource "aws_cloudwatch_metric_alarm" "this" {
statistic = each.value.statistic
threshold = each.value.threshold
alarm_actions = each.value.alarm_actions
ok_actions = each.value.ok_actions
alarm_description = each.value.alarm_description
datapoints_to_alarm = each.value.datapoints_to_alarm
treat_missing_data = each.value.treat_missing_data
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ variable "cloudwatch_metric_alarms" {
statistic = string
threshold = number
alarm_actions = list(string)
ok_actions = optional(list(string), [])
actions_enabled = optional(bool, false)
alarm_description = optional(string)
datapoints_to_alarm = optional(number)
Expand Down

0 comments on commit ebf373a

Please sign in to comment.