Skip to content

Commit 05b35d3

Browse files
committed
fixing alarms
1 parent 3df407b commit 05b35d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ resource "aws_cloudwatch_metric_alarm" "ec2_cpuutilization_alert_info" {
7272
comparison_operator = "GreaterThanOrEqualToThreshold"
7373
evaluation_periods = "5"
7474
datapoints_to_alarm = "4"
75-
treat_missing_data = "missing"
75+
treat_missing_data = "ignore"
7676
metric_name = "CPUUtilization"
7777
namespace = "AWS/EC2"
7878
period = "120"
@@ -96,7 +96,7 @@ resource "aws_cloudwatch_metric_alarm" "ec2_cpuutilization_alert_warning" {
9696
comparison_operator = "GreaterThanOrEqualToThreshold"
9797
evaluation_periods = "15"
9898
datapoints_to_alarm = "12"
99-
treat_missing_data = "breaching"
99+
treat_missing_data = "ignore"
100100
metric_name = "CPUUtilization"
101101
namespace = "AWS/EC2"
102102
period = "120"

0 commit comments

Comments
 (0)