Skip to content

Commit

Permalink
fix: nagware lambda trigger CRON definition is incorrect (#595)
Browse files Browse the repository at this point in the history
  • Loading branch information
craigzour authored Feb 8, 2024
1 parent 9cd9098 commit c7513ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/lambdas/cloudwatch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "aws_cloudwatch_event_rule" "form_archiver_lambda_trigger" {
resource "aws_cloudwatch_event_rule" "nagware_lambda_trigger" {
name = "nagware-lambda-trigger"
description = "Fires every Tuesday, Thursday and Sunday at 5am EST"
schedule_expression = "cron(0 10 * * TUE,THU,SUN *)" # 5 AM EST = 10 AM UTC ; every Tuesday, Thursday and Sunday
schedule_expression = "cron(0 10 ? * TUE,THU,SUN *)" # 5 AM EST = 10 AM UTC ; every Tuesday, Thursday and Sunday
}

resource "aws_cloudwatch_event_target" "reliability_dlq_lambda_trigger" {
Expand Down

0 comments on commit c7513ff

Please sign in to comment.