-
Notifications
You must be signed in to change notification settings - Fork 1
/
image.json
32 lines (32 loc) · 863 Bytes
/
image.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
{
"variables": {
"name": "{{env `IMAGE_NAME`}}"
},
"provisioners": [
{
"execute_command": "{{.Vars}} sudo -S -E sh -eux '{{.Path}}'",
"scripts": "./bsp",
"type": "shell"
}
],
"builders": [
{
"ssh_username": "ubuntu",
"disk_type": "network-nvme",
"use_ipv4_nat": true,
"subnet_id": "...",
"source_image_family": "ubuntu-1804",
"image_description": "...",
"image_family": "ubuntu-1804",
"image_name": "{{user `name`}}",
"disk_size_gb": "10",
"instance_cores": "8",
"instance_mem_gb": "8",
"platform_id": "standard-v2",
"zone": "ru-central1-a",
"folder_id": "...",
"token": "...",
"type": "yandex"
}
]
}