Changed based level example so it can be copied.
The base level example doesn't actually work unless enclosed with a "builders" section. All fixed now. Previous: { "type": "googlecompute", "account_file": "account.json", "project_id": "my project", "source_image": "debian-7-wheezy-v20150127", "zone": "us-central1-a" } Now: { "builders": [ { "type": "googlecompute", "account_file": "account.json", "project_id": "my project", "source_image": "debian-7-wheezy-v20150127", "zone": "us-central1-a" } ] }
This commit is contained in:
parent
2e949bf43d
commit
a7de9d9a2f
|
@ -83,11 +83,15 @@ the path to the file containing the JSON.
|
||||||
|
|
||||||
``` {.javascript}
|
``` {.javascript}
|
||||||
{
|
{
|
||||||
"type": "googlecompute",
|
"builders": [
|
||||||
"account_file": "account.json",
|
{
|
||||||
"project_id": "my-project",
|
"type": "googlecompute",
|
||||||
"source_image": "debian-7-wheezy-v20150127",
|
"account_file": "account.json",
|
||||||
"zone": "us-central1-a"
|
"project_id": "my project",
|
||||||
|
"source_image": "debian-7-wheezy-v20150127",
|
||||||
|
"zone": "us-central1-a"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue