debian-forge-composer/templates/packer/config.pkr.hcl
Tomáš Hozza f76432ebb5 Packer: skip packer-plugin-amazon version 1.3.10 due to missing checksum
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 <thozza@redhat.com>
2025-08-07 12:52:30 +02:00

10 lines
261 B
HCL

packer {
required_plugins {
amazon = {
# 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"
}
}
}