Skip to content

Commit 0009891

Browse files
CCM-8861: Fix terraform references
1 parent 38f640d commit 0009891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

infrastructure/terraform/modules/backend-api/cloudwatch_event_rule_sftp_poll.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ resource "aws_cloudwatch_event_rule" "sftp_poll" {
44
name = "${local.csi}-sftp-poll-${lower(each.key)}"
55
schedule_expression = "rate(1 hour)" # Runs at the top of every hour
66

7-
state = each.value.polling_enabled ? "ENABLED" : "DISABLED"
7+
state = each.value.enable_polling ? "ENABLED" : "DISABLED"
88
}
99

1010
resource "aws_cloudwatch_event_target" "sftp_poll" {

0 commit comments

Comments
 (0)