-
Notifications
You must be signed in to change notification settings - Fork 0
/
provision.json
41 lines (41 loc) · 1.17 KB
/
provision.json
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
{
"builders": [
{
"type": "qemu",
"iso_url": "{{ user `iso_url` }}",
"iso_checksum": "sha256:{{ user `iso_checksum` }}",
"output_directory": "{{ user `output` }}",
"ssh_password": "{{ user `ssh_password` }}",
"ssh_timeout": "10000s",
"ssh_username": "{{ user `ssh_username` }}",
"vm_name": "{{ user `vm_name` }}",
"disk_image": "true",
"skip_resize_disk": "true",
"display": "{{ user `display` }}",
"vga": "{{ user `vga` }}",
"headless": "{{ user `headless` }}",
"accelerator": "{{ user `accelerator` }}",
"qemuargs": [
["-m", "{{ user `memory` }}"],
["-machine", "accel={{ user `accelerator` }}"],
["-cpu", "{{ user `cpu` }}"]
]
}
],
"provisioners": [],
"variables": {
"iso_url": "{iso}",
"iso_checksum": "{iso_checksum}",
"vga": "{vga}",
"display": "{display}",
"headless": "{headless}",
"output": "{output}",
"ssh_fullname": "{ssh_fullname}",
"ssh_password": "{ssh_password}",
"ssh_username": "{ssh_username}",
"vm_name": "{name}",
"accelerator": "{accelerator}",
"memory": "{memory}",
"cpu": "{cpu}"
}
}