From 49ef1adc5b1bf923c7d21bbe5f02496197c8a9d2 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 17 Jan 2024 15:09:11 -0600 Subject: [PATCH] Pin and prune plugins --- sources/build.pkr.hcl | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/sources/build.pkr.hcl b/sources/build.pkr.hcl index 78d6dbf..653f54f 100644 --- a/sources/build.pkr.hcl +++ b/sources/build.pkr.hcl @@ -2,18 +2,14 @@ packer { required_plugins { qemu = { source = "github.com/hashicorp/qemu" - version = "~> 1" - } - ansible = { - source = "github.com/hashicorp/ansible" - version = "~> 1" + version = "= 1.0.10" } vagrant = { source = "github.com/hashicorp/vagrant" version = "= 1.1.1" } vmware = { - version = ">= 1.0" + version = "= 1.0.11" source = "github.com/hashicorp/vmware" } hyperv = { @@ -22,7 +18,7 @@ packer { } virtualbox = { source = "github.com/hashicorp/virtualbox" - version = "~> 1" + version = "= 1.0.5" } } }