Skip to content

Commit

Permalink
Merge pull request #345 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 d0a3462 + c72c795 commit 60ab25b
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 @@ -417,6 +417,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 @@ -280,6 +280,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 60ab25b

Please sign in to comment.