forked from jlduran/packer-FreeBSD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.pkr.hcl
69 lines (56 loc) · 908 Bytes
/
variables.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
variable "arch" {
type = string
default = "amd64"
}
variable "branch" {
type = string
default = "RELEASE"
}
variable "build_date" {
type = string
default = ""
}
variable "cpus" {
type = number
default = 1
}
variable "directory" {
type = string
default = "releases"
}
variable "disk_size" {
type = number
default = 10240
}
variable "filesystem" {
type = string
default = "zfs"
}
variable "zfs_compression" {
type = string
default = "zstd"
}
variable "git_commit" {
type = string
default = ""
}
variable "guest_os_type" {
type = string
default = "FreeBSD_64"
}
variable "memory" {
type = number
default = 1024
}
variable "mirror" {
type = string
default = "https://download.freebsd.org"
}
variable "rc_conf_file" {
type = string
default = ""
}
variable "revision" {
type = string
default = "14.0"
}