From d78a2612e4862cd5224fbb01aef5c09cbcb2369c 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: Define a default value for root ssh pub key to avoid error when a value is not provided for root_ssh_key --- 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