mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-27 20:11:15 -05:00
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"
}
]
}
|
||
|---|---|---|
| .. | ||
| basics | ||
| builders | ||
| command-line | ||
| extend | ||
| machine-readable | ||
| other | ||
| post-processors | ||
| provisioners | ||
| templates | ||
| index.html.md | ||
| installation.html.md | ||