Skip to content

Commit

Permalink
update descriptions as well :/ (#1457)
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels authored Jul 25, 2024
1 parent 7d255b7 commit 1bb9dbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aws/common/cloudwatch_alarms_sms.tf
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ resource "aws_cloudwatch_metric_alarm" "sqs-send-sms-low-queue-delay-critical" {
resource "aws_cloudwatch_metric_alarm" "sqs-throttled-sms-stuck-in-queue-warning" {
count = var.cloudwatch_enabled ? 1 : 0
alarm_name = "sqs-throttled-sms-stuck-in-queue-warning"
alarm_description = "Delay in throttled SMS queue >= 30 minutes"
alarm_description = "Delay in throttled SMS queue >= 45 minutes"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = "1"
metric_name = "ApproximateAgeOfOldestMessage"
Expand All @@ -389,7 +389,7 @@ resource "aws_cloudwatch_metric_alarm" "sqs-throttled-sms-stuck-in-queue-warning
resource "aws_cloudwatch_metric_alarm" "sqs-throttled-sms-stuck-in-queue-critical" {
count = var.cloudwatch_enabled ? 1 : 0
alarm_name = "sqs-throttled-sms-stuck-in-queue-critical"
alarm_description = "Delay in throttled SMS queue >= 45 minute"
alarm_description = "Delay in throttled SMS queue >= 60 minute"
comparison_operator = "GreaterThanOrEqualToThreshold"
evaluation_periods = "1"
metric_name = "ApproximateAgeOfOldestMessage"
Expand Down

0 comments on commit 1bb9dbd

Please sign in to comment.