File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -179,4 +179,5 @@ module "multi-runner" {
179179| <a name =" output_runners " ></a > [ runners] ( #output\_ runners ) | n/a |
180180| <a name =" output_ssm_parameters " ></a > [ ssm\_ parameters] ( #output\_ ssm\_ parameters ) | n/a |
181181| <a name =" output_webhook " ></a > [ webhook] ( #output\_ webhook ) | n/a |
182+ | <a name =" output_workflow_job_queue " ></a > [ workflow\_ job\_ queue] ( #output\_ workflow\_ job\_ queue ) | Workflow job queue for multi runners. |
182183<!-- END_TF_DOCS -->
Original file line number Diff line number Diff line change @@ -42,3 +42,10 @@ output "webhook" {
4242output "ssm_parameters" {
4343 value = module. ssm . parameters
4444}
45+
46+ output "queues" {
47+ description = " SQS queues."
48+ value = {
49+ webhook_workflow_job_queue = try (aws_sqs_queue. webhook_events_workflow_job_queue [* ]. arn , " " )
50+ }
51+ }
Original file line number Diff line number Diff line change @@ -50,6 +50,6 @@ output "queues" {
5050 value = {
5151 build_queue_arn = aws_sqs_queue.queued_builds.arn
5252 build_queue_dlq_arn = var.redrive_build_queue.enabled ? aws_sqs_queue.queued_builds_dlq[0 ].arn : null
53- webhook_workflow_job_queue = try (aws_sqs_queue. webhook_events_workflow_job_queue [0 ], null ) != null ? aws_sqs_queue.webhook_events_workflow_job_queue[ 0 ]. arn : " "
53+ webhook_workflow_job_queue = try (aws_sqs_queue. webhook_events_workflow_job_queue [* ] . arn , " " )
5454 }
5555}
You can’t perform that action at this time.
0 commit comments