We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f4f73b commit 85b9a4aCopy full SHA for 85b9a4a
main.tf
@@ -113,7 +113,7 @@ resource "aws_cloudwatch_event_rule" "event_rule" {
113
name = var.cloudwatch_event_rule_name
114
description = "Rule that triggers lambda function"
115
schedule_expression = local.schedule_expression
116
- is_enabled = var.is_enabled
+ is_enabled = var.cw_event_is_enabled
117
}
118
119
resource "aws_cloudwatch_event_target" "cloudwatch_event_target" {
variables.tf
@@ -59,7 +59,7 @@ variable "lambda_role_name" {
59
description = "Name of the aws lambda execution role"
60
61
62
-variable "is_enabled" {
+variable "cw_event_is_enabled" {
63
type = bool
64
description = "Mark if CW event rule is enabled or not"
65
0 commit comments