forked from maartenbeeckmans/packer-debian
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvars.debian.pkr.hcl
More file actions
57 lines (57 loc) · 778 Bytes
/
vars.debian.pkr.hcl
File metadata and controls
57 lines (57 loc) · 778 Bytes
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
###############
## Variables ##
###############
variable "box_basename" {
type = string
}
variable "build_dir" {
type = string
}
variable "scripts_dir" {
type = string
}
variable "cpus" {
type = number
}
variable "disk_size" {
type = string
}
variable "headless" {
type = bool
}
variable "http_dir" {
type = string
}
variable "iso_checksum" {
type = string
}
variable "iso_name" {
type = string
}
variable "memory" {
type = number
}
variable "mirror" {
type = string
}
variable "mirror_dir" {
type = string
}
variable "templates_dir" {
type = string
}
variable "files_dir" {
type = string
}
variable "name" {
type = string
}
variable "preseed_path" {
type = string
}
variable "template" {
type = string
}
variable "version" {
type = string
}