Merge pull request #3718 from Adron/patch-1

GCE: Docs - changed basic level example so it can be copied & pasted
This commit is contained in:
Chris Bednarski 2016-07-18 18:30:50 -07:00 committed by GitHub
commit d5238b957d
1 changed files with 7 additions and 5 deletions

View File

@ -83,11 +83,13 @@ the path to the file containing the JSON.
``` {.javascript} ``` {.javascript}
{ {
"type": "googlecompute", "builders": [{
"account_file": "account.json", "type": "googlecompute",
"project_id": "my-project", "account_file": "account.json",
"source_image": "debian-7-wheezy-v20150127", "project_id": "my project",
"zone": "us-central1-a" "source_image": "debian-7-wheezy-v20150127",
"zone": "us-central1-a"
}]
} }
``` ```