From 0fb8ffdbb7b22f58ea0f81a3a63d879eb9c78275 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Thu, 21 Aug 2025 17:26:02 -0500 Subject: [PATCH] Update Packer plugins --- sources/build.pkr.hcl | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/sources/build.pkr.hcl b/sources/build.pkr.hcl index 05ea09b..532e45b 100644 --- a/sources/build.pkr.hcl +++ b/sources/build.pkr.hcl @@ -1,24 +1,24 @@ packer { required_plugins { qemu = { - source = "github.com/hashicorp/qemu" - version = "= 1.1.0" - } - vagrant = { - source = "github.com/hashicorp/vagrant" + source = "github.com/hashicorp/packer-plugin-qemu" version = "= 1.1.4" } + vagrant = { + source = "github.com/hashicorp/packer-plugin-vagrant" + version = "= 1.1.6" + } vmware = { - version = "= 1.0.11" source = "github.com/hashicorp/vmware" + version = "= 1.0.11" } hyperv = { - version = "= 1.1.3" - source = "github.com/hashicorp/hyperv" + version = "= 1.1.4" + source = "github.com/hashicorp/packer-plugin-hyperv" } virtualbox = { source = "github.com/hashicorp/virtualbox" - version = "= 1.0.5" + version = "= 1.1.3" } } }