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.
2 parents bea16f0 + 0c2f0cd commit 22a8d52Copy full SHA for 22a8d52
twilio-iac/terraform-modules/aws/default/integration-test-scheduler.tf
@@ -18,7 +18,7 @@ locals {
18
19
resource "aws_cloudwatch_event_rule" "integration_test_event_rule" {
20
count = var.enable_integration_tests ? 1 : 0
21
- name = "${local.integration_test_lambda_name}-event-rule"
+ name = "${local.integration_test_lambda_name}-event-rule-${lower(var.short_helpline)}"
22
schedule_expression = var.integration_test_lambda_schedule
23
}
24
twilio-iac/terraform-modules/stages/provision/variables.tf
@@ -116,5 +116,6 @@ variable "ui_editable" {
116
117
variable "enable_integration_tests" {
118
description = "Enables integration tests to run on a schedule for this helpline"
119
- type = bool
+ type = bool
120
+ default = false
121
0 commit comments