-
Notifications
You must be signed in to change notification settings - Fork 2
/
debian-12-bookworm.variables.pkr.hcl
86 lines (70 loc) · 1.34 KB
/
debian-12-bookworm.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
variable "iso_file" {
type = string
default = ""
}
variable "iso_url" {
type = string
default = "https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-11.6.0-amd64-netinst.iso"
}
variable "iso_storage_pool" {
type = string
default = ""
}
variable "iso_checksum" {
type = string
default = "sha512:224cd98011b9184e49f858a46096c6ff4894adff8945ce89b194541afdfd93b73b4666b0705234bd4dff42c0a914fdb6037dd0982efb5813e8a553d8e92e6f51"
}
variable "vm_name" {
type = string
default = "pckr-tmpl-debian-12"
}
variable "vmid" {
type = string
description = "Proxmox Template ID"
default = "9999"
}
variable "cpu_type" {
type = string
default = "kvm64"
}
variable "cores" {
type = string
default = "2"
}
variable "disk_format" {
type = string
default = "raw"
}
variable "disk_size" {
type = string
default = "16G"
}
variable "storage_pool" {
type = string
default = ""
}
variable "memory" {
type = string
default = "2048"
}
variable "network_vlan" {
type = string
default = ""
}
variable "proxmox_api_password" {
type = string
sensitive = true
default = ""
}
variable "proxmox_api_user" {
type = string
default = "root@pam"
}
variable "proxmox_host" {
type = string
default = ""
}
variable "proxmox_node" {
type = string
default = ""
}