From 3afbd5fb0952dbb37d7db216f325acf57cc3aa97 Mon Sep 17 00:00:00 2001 From: m8t88 <67329523+m8t88@users.noreply.github.com> Date: Thu, 10 Oct 2024 09:20:06 +0200 Subject: [PATCH] fix: missing GHES URL for the retry lambda (#4177) The environment variable for the retry lambads is not set due to missing to pass the value to the inner terraform module. This fix remedies that. Co-authored-by: Kai Liu --- modules/runners/job-retry.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/runners/job-retry.tf b/modules/runners/job-retry.tf index 99596e2a3c..e51c3903d4 100644 --- a/modules/runners/job-retry.tf +++ b/modules/runners/job-retry.tf @@ -26,6 +26,7 @@ locals { github_app_parameters = var.github_app_parameters enable_organization_runners = var.enable_organization_runners sqs_build_queue = var.sqs_build_queue + ghes_url = var.ghes_url } }