Skip to content

Commit

Permalink
chore(packer) bump the maximum version to 1.9.x (#726)
Browse files Browse the repository at this point in the history
Since #711, packer is using the 1.9.x line which throws the following error:

```
Error: Unsupported Packer Core version 
   on main.pkr.hcl line 2, in packer:
    2:   required_version = ">= 1.7.2, < 1.9.0"
```

We cannot use updatecli to automate this version constraint as packer version must be upgraded before trying to use it.
  • Loading branch information
dduportal authored Jun 27, 2023
1 parent d35a057 commit 54623b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
packer {
required_version = ">= 1.7.2, < 1.9.0"
required_version = ">= 1.7.2, < 1.10.0"
required_plugins {
amazon = {
version = "1.2.6"
Expand Down

0 comments on commit 54623b7

Please sign in to comment.