From dfc39928f84bbf0259a88bc8ad64e3aa045206f0 Mon Sep 17 00:00:00 2001
From: Krish Moodbidri <krish94@uab.edu>
Date: Fri, 4 Oct 2024 10:35:18 -0500
Subject: [PATCH] fixed syntax

---
 .gitlab-ci.yml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e455c0c..5e03b07 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -59,16 +59,16 @@ deploy_ood_proxy_node:
 
     - |
       PROXY_INSTANCE_ID=$(openstack server create \
-        --image $PKR_VAR_source_image \
-        --flavor $PKR_VAR_flavor \
-        --network $OOD_PROXY_NETWORK \
-        --security-group ood-https-ports
-        --security-group allow-ssh
-        --user-data user_data.txt
+        --image "$PKR_VAR_source_image" \
+        --flavor "$PKR_VAR_flavor" \
+        --network "$OOD_PROXY_NETWORK" \
+        --security-group ood-https-ports \
+        --security-group allow-ssh \
+        --user-data user_data.txt \
         --wait \
         --format value \
         --column id \
-        $OOD_PROXY_NAME)
+        "$OOD_PROXY_NAME")
 
       
       echo "Created PROXY_INSTANCE_ID: $PROXY_INSTANCE_ID"
-- 
GitLab