From 1bb9dbdf2b1a60708bbeb7a3225b9268f1c06c1e Mon Sep 17 00:00:00 2001 From: Steve Astels Date: Thu, 25 Jul 2024 13:25:42 -0400 Subject: [PATCH] update descriptions as well :/ (#1457) --- aws/common/cloudwatch_alarms_sms.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/common/cloudwatch_alarms_sms.tf b/aws/common/cloudwatch_alarms_sms.tf index 32a99f947..fa61525d5 100644 --- a/aws/common/cloudwatch_alarms_sms.tf +++ b/aws/common/cloudwatch_alarms_sms.tf @@ -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" @@ -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"