From f76432ebb5388d80c798b8f20ec0f2436c138e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hozza?= Date: Thu, 7 Aug 2025 10:44:02 +0200 Subject: [PATCH] Packer: skip packer-plugin-amazon version 1.3.10 due to missing checksum MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 1.3.10 release has some issues and fails when used by Packer. See https://github.com/hashicorp/packer-plugin-amazon/issues/586 for more information. Signed-off-by: Tomáš Hozza --- templates/packer/config.pkr.hcl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/packer/config.pkr.hcl b/templates/packer/config.pkr.hcl index b8252a465..03c0158a4 100644 --- a/templates/packer/config.pkr.hcl +++ b/templates/packer/config.pkr.hcl @@ -1,7 +1,9 @@ packer { required_plugins { amazon = { - version = ">= 1.2.3" + # we need to skip version 1.3.10 due to a bug + # https://github.com/hashicorp/packer-plugin-amazon/issues/586 + version = ">= 1.2.3, != 1.3.10" source = "github.com/hashicorp/amazon" } }