forked from AlmaLinux/cloud-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
versions.pkr.hcl
37 lines (37 loc) · 844 Bytes
/
versions.pkr.hcl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
packer {
required_version = ">= 1.7.0"
required_plugins {
qemu = {
version = ">= 1.0.3"
source = "github.com/hashicorp/qemu"
}
virtualbox = {
version = ">= 1.0.0"
source = "github.com/hashicorp/virtualbox"
}
vmware = {
version = ">= 1.0.0"
source = "github.com/hashicorp/vmware"
}
hyperv = {
version = ">= 1.0.0"
source = "github.com/hashicorp/hyperv"
}
parallels = {
version = ">= 1.0.0"
source = "github.com/hashicorp/parallels"
}
ansible = {
version = ">= 1.0.3"
source = "github.com/hashicorp/ansible"
}
amazon = {
version = ">= 1.0.0"
source = "github.com/hashicorp/amazon"
}
digitalocean = {
version = ">= 1.0.0"
source = "github.com/hashicorp/digitalocean"
}
}
}