You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/multi-runner/variables.tf
+6
Original file line number
Diff line number
Diff line change
@@ -283,6 +283,12 @@ variable "webhook_mode" {
283
283
}
284
284
}
285
285
286
+
variable"eventbridge_allowed_events" {
287
+
description="List of events that are allowed (accepted) to be sent to the eventbridge by the webhook. Variable only have effect if `webhook_mode` is set to `eventbridge`."
288
+
type=list(string)
289
+
default=[]
290
+
}
291
+
286
292
variable"webhook_lambda_s3_key" {
287
293
description="S3 key for webhook lambda function. Required if using S3 bucket to specify lambdas."
Copy file name to clipboardExpand all lines: variables.tf
+6
Original file line number
Diff line number
Diff line change
@@ -955,3 +955,9 @@ variable "webhook_mode" {
955
955
error_message="`mode` value is not valid, valid values are: `direct`, and `eventbridge`."
956
956
}
957
957
}
958
+
959
+
variable"eventbridge_allowed_events" {
960
+
description="List of events that are allowed (accepted) to be sent to the eventbridge by the webhook. Variable only have effect if `webhook_mode` is set to `eventbridge`."
0 commit comments