packer: track lockfile

This commit is contained in:
classabbyamp 2024-07-23 21:23:04 -04:00 committed by classabbyamp
parent f68e200135
commit a0623c6bf6
1 changed files with 16 additions and 0 deletions

16
packer/plugins.pkr.hcl Normal file
View File

@ -0,0 +1,16 @@
packer {
required_plugins {
qemu = {
version = "~> 1"
source = "github.com/hashicorp/qemu"
}
vagrant = {
version = "~> 1"
source = "github.com/hashicorp/vagrant"
}
virtualbox = {
version = "~> 1"
source = "github.com/hashicorp/virtualbox"
}
}
}