-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexample.json
49 lines (45 loc) · 1.58 KB
/
example.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
42
43
44
45
46
47
48
49
{
"variables": {
"triton_url": "{{env `SDC_URL`}}",
"triton_account": "{{env `SDC_ACCOUNT`}}",
"triton_key_id": "{{env `SDC_KEY_ID`}}",
"triton_key_material": "{{env `SDC_KEY_MATERIAL`}}"
},
"builders": [
{
"type": "triton",
"triton_url": "{{user `triton_url`}}",
"triton_account": "{{user `triton_account`}}",
"triton_key_id": "{{user `triton_key_id`}}",
"triton_key_material": "{{user `triton_key_material`}}",
"source_machine_package": "g3-standard-0.25-smartos",
"source_machine_image": "842e6fa6-6e9b-11e5-8402-1b490459e334",
"source_machine_networks": [
"5983940e-58a5-4543-b732-c689b1fe4c08",
"9ec60129-9034-47b4-b111-3026f9b1a10f"
],
"source_machine_metadata": {
"Key1": "Value1"
},
"source_machine_tags": {
"Project": "Packer-Triton"
},
"source_machine_firewall_enabled": false,
"image_name": "my-test-image",
"image_version": "1.0.0",
"image_description": "SDC Image created with Packer",
"image_homepage": "http://jen20.com",
"image_eula_url": "https://www.mozilla.org/media/MPL/2.0/index.815ca599c9df.txt",
"image_acls": [],
"image_tags": {
"Project": "Packer-Triton"
}
}
],
"provisioners": [
{
"type": "shell",
"inline": ["touch foo.txt"]
}
]
}