-
Notifications
You must be signed in to change notification settings - Fork 49
/
versions.pkr.hcl
41 lines (41 loc) · 943 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
38
39
40
41
packer {
required_version = ">= 1.7.0"
required_plugins {
amazon = {
version = ">= 1.1.0"
source = "github.com/hashicorp/amazon"
}
ansible = {
version = ">= 1.1.0"
source = "github.com/hashicorp/ansible"
}
digitalocean = {
version = ">= 1.2.0"
source = "github.com/digitalocean/digitalocean"
}
hyperv = {
version = ">= 1.0.3"
source = "github.com/hashicorp/hyperv"
}
parallels = {
version = ">= 1.1.2"
source = "github.com/Parallels/parallels"
}
qemu = {
version = ">= 1.0.7"
source = "github.com/hashicorp/qemu"
}
vagrant = {
version = ">= 1.1.0"
source = "github.com/hashicorp/vagrant"
}
virtualbox = {
version = ">= 1.0.3"
source = "github.com/hashicorp/virtualbox"
}
vmware = {
version = ">= 1.1.0"
source = "github.com/hashicorp/vmware"
}
}
}