From 00c23bf29542d2368a2f46982df8ba7965aa4f48 Mon Sep 17 00:00:00 2001 From: ermisw Date: Tue, 28 Nov 2023 12:36:12 +0100 Subject: [PATCH] added KEPTN Bridge URL as env for passing to other job --- jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jenkinsfile b/jenkinsfile index 983c102..18ac9c9 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -39,7 +39,8 @@ pipeline { sh 'terraform init -backend-config="key=keptn-demo"' sh 'terraform apply -auto-approve' - env.KEPTN_BRIDGE_URL = sh 'terraform output -raw Keptn_Bridge_Url' + + env.KEPTN_BRIDGE_URL = terraform output -raw Keptn_Bridge_Url } }