We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b5b3d5 commit 0c16c55Copy full SHA for 0c16c55
modules/multi-runner/outputs.tf
@@ -38,6 +38,9 @@ output "webhook" {
38
lambda_log_group = module.webhook.lambda_log_group
39
lambda_role = module.webhook.role
40
endpoint = "${module.webhook.gateway.api_endpoint}/${module.webhook.endpoint_relative_path}"
41
+ webhook = module.webhook.webhook
42
+ dispatcher = var.webhook_mode == "eventbridge" ? module.webhook.dispatcher : null
43
+ eventbridge = var.webhook_mode == "eventbridge" ? module.webhook.eventbridge : null
44
}
45
46
modules/webhook/eventbridge/outputs.tf
@@ -1,6 +1,6 @@
1
output "eventbridge" {
2
value = {
3
- event_but = aws_cloudwatch_event_bus.main
+ event_bus = aws_cloudwatch_event_bus.main
4
archive = aws_cloudwatch_event_archive.main
5
6
0 commit comments