From 02d45dbd34d9529c46724cc9174078b70e5aa1bf Mon Sep 17 00:00:00 2001 From: Niek Palm Date: Wed, 28 Dec 2022 13:28:09 +0100 Subject: [PATCH] fix: Main module broken after supporting multiple labels (#2802) fix: Main module broken after supporting multiple labels for multi-runnes --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index fb233a51d7..8bc327b17a 100644 --- a/main.tf +++ b/main.tf @@ -135,7 +135,7 @@ module "webhook" { arn : aws_sqs_queue.queued_builds.arn fifo : var.fifo_build_queue matcherConfig : { - labelMatchers : split(",", local.runner_labels) + labelMatchers : [split(",", local.runner_labels)] exactMatch : var.runner_enable_workflow_job_labels_check_all } }