From 22446e94e83abdcc1a650cb58c15bf041b78c5d2 Mon Sep 17 00:00:00 2001
From: Eesaan Atluri <atlurie@uab.edu>
Date: Tue, 7 Jan 2025 12:11:04 -0500
Subject: [PATCH] fix: Avoid error when a value is not defined

---
 openstack-ood/variables.pkr.hcl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/openstack-ood/variables.pkr.hcl b/openstack-ood/variables.pkr.hcl
index 5a6f608..a97e327 100644
--- a/openstack-ood/variables.pkr.hcl
+++ b/openstack-ood/variables.pkr.hcl
@@ -1,5 +1,6 @@
 variable "root_ssh_key" {
   type        = string
+  default     = ""
   description = "The root key to use for ssh"
 }
 
@@ -87,4 +88,4 @@ variable "volume_size" {
   type        = number
   default     = 20
   description = "The default volume size for building iamge"
-}
\ No newline at end of file
+}
-- 
GitLab