Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disables alarms #1643

Merged
merged 1 commit into from Apr 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion terraform/modules/cloudwatch/alarms.tf
Expand Up @@ -43,7 +43,7 @@ resource "aws_cloudwatch_metric_alarm" "load_balancer_request_spike" {
threshold_metric_id = "e1"
alarm_description = "There has been a large spike in load balancer requests to the ${var.stack_description} cloudfoundry apps loadbalancer"
insufficient_data_actions = []
actions_enabled = true
actions_enabled = var.stack_description == "production" ? true : false
ok_actions = []
alarm_actions = [var.cg_platform_notifications_arn, var.cg_platform_slack_notifications_arn]
treat_missing_data = "missing"
Expand Down