From 8e91574ce28742d5a4f39563773cb0db8692da87 Mon Sep 17 00:00:00 2001 From: Brett Porter Date: Thu, 6 Mar 2014 22:14:44 +1100 Subject: [PATCH] Update googlecompute.markdown A very small hint that you can't just use "packer-images", since buckets need to be globally unique, and must already exist. Attempting to use that results in the error 'Got status 403 from attempt to start resumable upload. Aborting', 'ABORT' --- website/source/docs/builders/googlecompute.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/docs/builders/googlecompute.markdown b/website/source/docs/builders/googlecompute.markdown index 6443a530a..9aba9b5cd 100644 --- a/website/source/docs/builders/googlecompute.markdown +++ b/website/source/docs/builders/googlecompute.markdown @@ -55,7 +55,7 @@ files obtained in the previous section.
 {
   "type": "googlecompute",
-  "bucket_name": "packer-images",
+  "bucket_name": "my-project-packer-images",
   "client_secrets_file": "client_secret.json",
   "private_key_file": "XXXXXX-privatekey.p12",
   "project_id": "my-project",
@@ -72,7 +72,7 @@ each category, the available options are alphabetized and described.
 Required:
 
 * `bucket_name` (string) - The Google Cloud Storage bucket to store the
-  images that are created.
+  images that are created. The bucket must already exist in your project.
 
 * `client_secrets_file` (string) - The client secrets JSON file that
   was set up in the section above.