-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathpkr-variables.pkr.hcl
491 lines (482 loc) · 10.8 KB
/
pkr-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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
# General variables
variable "os_name" {
type = string
description = "OS Brand Name"
}
variable "os_version" {
type = string
description = "OS version number"
}
variable "os_arch" {
type = string
validation {
condition = var.os_arch == "x86_64" || var.os_arch == "aarch64"
error_message = "The OS architecture type should be either x86_64 or aarch64."
}
description = "OS architecture type, x86_64 or aarch64"
}
variable "is_windows" {
type = bool
default = false
description = "Determines to set setting for Windows or Linux"
}
variable "http_proxy" {
type = string
default = env("http_proxy")
description = "Http proxy url to connect to the internet"
}
variable "https_proxy" {
type = string
default = env("https_proxy")
description = "Https proxy url to connect to the internet"
}
variable "no_proxy" {
type = string
default = env("no_proxy")
description = "No Proxy"
}
variable "sources_enabled" {
type = list(string)
default = [
"source.parallels-iso.vm",
"source.qemu.vm",
"source.virtualbox-iso.vm",
"source.vmware-iso.vm",
]
description = "Build Sources to use for building vagrant boxes"
}
# Source block provider specific variables
# hyperv-iso
variable "hyperv_boot_wait" {
type = string
default = null
}
variable "hyperv_enable_dynamic_memory" {
type = bool
default = null
}
variable "hyperv_enable_secure_boot" {
type = bool
default = null
}
variable "hyperv_generation" {
type = number
default = 1
description = "Hyper-v generation version"
}
variable "hyperv_guest_additions_mode" {
type = string
default = "disable"
}
variable "hyperv_switch_name" {
type = string
default = "bento"
}
# parallels-ipsw
variable "parallels_host_interfaces" {
type = list(string)
default = null
description = "Host interfaces to use for the parallels-ipsw builder"
}
variable "parallels_ipsw_url" {
type = string
default = null
description = "URL to download the IPSW file"
}
variable "parallels_ipsw_checksum" {
type = string
default = null
description = "Checksum of the IPSW file"
}
variable "parallels_ipsw_target_path" {
type = string
default = "build_dir_iso"
description = "Path to store the IPSW file. Null will use packer cache default or build_dir_iso will put it in the local build/iso directory."
}
variable "parallels_prlctl_post" {
type = list(list(string))
default = null
description = "Commands to run after the VM is created"
}
variable "http_content" {
type = map(string)
default = null
description = "Content to be served by the http server"
}
# parallels-iso
variable "parallels_boot_wait" {
type = string
default = null
}
variable "parallels_guest_os_type" {
type = string
default = null
description = "OS type for virtualization optimization"
}
variable "parallels_tools_flavor" {
type = string
default = null
}
variable "parallels_tools_mode" {
type = string
default = null
}
variable "parallels_prlctl" {
type = list(list(string))
default = null
}
variable "parallels_prlctl_version_file" {
type = string
default = ".prlctl_version"
}
# qemu
variable "qemu_accelerator" {
type = string
default = null
}
variable "qemu_binary" {
type = string
default = null
}
variable "qemu_boot_wait" {
type = string
default = null
}
variable "qemu_cpu_model" {
type = string
default = "host"
}
variable "qemu_disk_cache" {
type = string
default = "unsafe"
}
variable "qemu_disk_compression" {
type = bool
default = true
}
variable "qemu_disk_detect_zeroes" {
type = string
default = "unmap"
}
variable "qemu_disk_discard" {
type = string
default = "unmap"
}
variable "qemu_disk_interface" {
type = string
default = "virtio"
}
variable "qemu_display" {
type = string
default = "none"
description = "What QEMU -display option to use. Defaults to gtk, use none to not pass the -display option allowing QEMU to choose the default"
}
variable "qemu_use_default_display" {
type = bool
default = null
description = "If true, do not pass a -display option to qemu, allowing it to choose the default"
}
variable "qemu_disk_image" {
type = bool
default = false
description = "Whether iso_url is a bootable qcow2 disk image"
}
variable "qemu_efi_boot" {
type = bool
default = null
description = "Enable EFI boot"
}
variable "qemu_efi_firmware_code" {
type = string
default = null
description = "EFI firmware code path"
}
variable "qemu_efi_firmware_vars" {
type = string
default = null
description = "EFI firmware vars file path"
}
variable "qemu_efi_drop_efivars" {
type = bool
default = false
description = "Drop EFI vars"
}
variable "qemu_format" {
type = string
default = "qcow2"
validation {
condition = var.qemu_format == "qcow2" || var.qemu_format == "raw"
error_message = "Disk format, takes qcow2 or raw."
}
description = "Disk format, takes qcow2 or raw"
}
variable "qemu_machine_type" {
type = string
default = null
}
variable "qemu_net_device" {
type = string
default = "virtio-net"
}
variable "qemuargs" {
type = list(list(string))
default = null
}
variable "qemu_use_pflash" {
type = bool
default = false
}
# virtualbox-iso
variable "vbox_boot_wait" {
type = string
default = null
}
variable "vbox_firmware" {
type = string
default = null
description = "Firmware type, takes bios or efi"
}
variable "vbox_gfx_controller" {
type = string
default = null
}
variable "vbox_gfx_vram_size" {
type = number
default = null
}
variable "vbox_guest_additions_interface" {
type = string
default = null
}
variable "vbox_guest_additions_mode" {
type = string
default = null
}
variable "vbox_guest_additions_path" {
type = string
default = "VBoxGuestAdditions_{{ .Version }}.iso"
}
variable "vbox_guest_os_type" {
type = string
default = null
description = "OS type for virtualization optimization"
}
variable "vbox_hard_drive_interface" {
type = string
default = null
}
variable "vbox_iso_interface" {
type = string
default = null
}
variable "vboxmanage" {
type = list(list(string))
default = null
}
variable "vbox_nic_type" {
type = string
default = null
}
variable "virtualbox_version_file" {
type = string
default = ".vbox_version"
}
variable "vbox_rtc_time_base" {
type = string
default = "UTC"
description = "RTC time base"
}
# virtualbox-ovf
variable "vbox_source_path" {
type = string
default = null
description = "Path to the OVA/OVF file"
}
variable "vbox_checksum" {
type = string
default = null
description = "Checksum of the OVA/OVF file"
}
# vmware-iso
variable "vmware_boot_wait" {
type = string
default = null
}
variable "vmware_cdrom_adapter_type" {
type = string
default = "sata"
description = "CDROM adapter type. Needs to be SATA (or non-SCSI) for ARM64 builds."
}
variable "vmware_cores" {
type = number
default = 2
description = "The number of virtual CPU cores per socket for the virtual machine"
}
variable "vmware_disk_adapter_type" {
type = string
default = "sata"
description = "Disk adapter type. Needs to be SATA (PVSCSI, or non-SCSI) for ARM64 builds."
}
variable "vmware_firmware" {
type = string
default = null
description = "The firmware type for the virtual machine. Allowed values are bios, efi, and efi-secure (for secure boot). Defaults to the recommended firmware type for the guest operating system"
}
variable "vmware_guest_os_type" {
type = string
default = null
description = "OS type for virtualization optimization"
}
variable "vmware_tools_upload_flavor" {
type = string
default = null
}
variable "vmware_tools_upload_path" {
type = string
default = null
}
variable "vmware_version" {
type = number
default = 21
}
variable "vmware_vmx_data" {
type = map(string)
default = null
}
variable "vmware_vmx_remove_ethernet_interfaces" {
type = bool
default = true
}
variable "vmware_usb" {
type = bool
default = false
description = "Enable the USB 2.0 controllers for the virtual machine"
}
variable "vmware_network_adapter_type" {
type = string
default = null
}
variable "vmware_network" {
type = string
default = "nat"
}
variable "vmware_vnc_disable_password" {
type = bool
default = true
}
# Source block common variables
variable "boot_command" {
type = list(string)
default = null
description = "Commands to pass to gui session to initiate automated install"
}
variable "default_boot_wait" {
type = string
default = null
}
variable "cd_content" {
type = map(string)
default = null
description = "Content to be served by the cdrom"
}
variable "cd_files" {
type = list(string)
default = null
}
variable "cd_label" {
type = string
default = "cidata"
}
variable "cpus" {
type = number
default = 2
}
variable "communicator" {
type = string
default = null
}
variable "disk_size" {
type = number
default = null
}
variable "floppy_files" {
type = list(string)
default = null
}
variable "headless" {
type = bool
default = true
description = "Start GUI window to interact with VM"
}
variable "http_directory" {
type = string
default = null
}
variable "iso_checksum" {
type = string
default = null
description = "ISO download checksum"
}
variable "iso_target_path" {
type = string
default = "build_dir_iso"
description = "Path to store the ISO file. Null will use packer cache default or build_dir_iso will put it in the local build/iso directory."
}
variable "iso_url" {
type = string
default = null
description = "ISO download url"
}
variable "memory" {
type = number
default = null
}
variable "output_directory" {
type = string
default = null
}
variable "shutdown_command" {
type = string
default = null
}
variable "shutdown_timeout" {
type = string
default = "15m"
}
variable "ssh_password" {
type = string
default = "vagrant"
}
variable "ssh_port" {
type = number
default = 22
}
variable "ssh_timeout" {
type = string
default = "15m"
}
variable "ssh_username" {
type = string
default = "vagrant"
}
variable "winrm_password" {
type = string
default = "vagrant"
}
variable "winrm_timeout" {
type = string
default = "60m"
}
variable "winrm_username" {
type = string
default = "vagrant"
}
variable "vm_name" {
type = string
default = null
}
# builder common block
variable "scripts" {
type = list(string)
default = null
}