From f75558bfb7aa23fc052f4757e683d8f969b49b59 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 24 Dec 2024 01:00:23 -0600 Subject: [PATCH] Update S3 URL Since the STORAGE_URL variable no longer has the `http://` portion of the address, we have to add it into the hcl files --- sources/inputs.pkr.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/inputs.pkr.hcl b/sources/inputs.pkr.hcl index 230548e..2fcc09d 100644 --- a/sources/inputs.pkr.hcl +++ b/sources/inputs.pkr.hcl @@ -127,7 +127,7 @@ locals { version = var.version build = var.build }) - iso_location = "s3::${var.storage_url}/isos/cache/${var.distro}/${var.iso.checksum}.iso?aws_access_key_id=root&aws_access_key_secret=${var.minio_secret}" + iso_location = "s3::http://${var.storage_url}/isos/cache/${var.distro}/${var.iso.checksum}.iso?aws_access_key_id=root&aws_access_key_secret=${var.minio_secret}" cpus = var.cpus memory = var.memory