plugins.pkr.hcl 310 B

12345678910111213141516
  1. packer {
  2. required_plugins {
  3. qemu = {
  4. version = "~> 1"
  5. source = "github.com/hashicorp/qemu"
  6. }
  7. vagrant = {
  8. version = "~> 1"
  9. source = "github.com/hashicorp/vagrant"
  10. }
  11. virtualbox = {
  12. version = "~> 1"
  13. source = "github.com/hashicorp/virtualbox"
  14. }
  15. }
  16. }