From 27ef4589bfdb01fb265c220b23c72489454d2ab6 Mon Sep 17 00:00:00 2001 From: Ethan Girouard Date: Fri, 29 Mar 2024 17:08:24 -0400 Subject: [PATCH] Fix tunnel config script argument order --- cicd/create-tunnel-config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cicd/create-tunnel-config.sh b/cicd/create-tunnel-config.sh index f4c69ab..11fb59a 100755 --- a/cicd/create-tunnel-config.sh +++ b/cicd/create-tunnel-config.sh @@ -2,9 +2,9 @@ set -e -TUNNEL_ID=$1 +SERVICE=$1 HOSTNAME=$2 -SERVICE=$3 +TUNNEL_ID=$3 echo "Creating tunnel config for $HOSTNAME"