From 88fceff22673191b340ede1f89c2889f6867d908 Mon Sep 17 00:00:00 2001 From: James Portman Date: Thu, 5 Jan 2017 10:34:42 +0000 Subject: [PATCH] Correcting CLI usage For gcloud compute instances create, multiple scopes should be comma separated in one set of quotes --- website/source/docs/builders/googlecompute.html.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/website/source/docs/builders/googlecompute.html.md b/website/source/docs/builders/googlecompute.html.md index 41e61d54e..a54099418 100644 --- a/website/source/docs/builders/googlecompute.html.md +++ b/website/source/docs/builders/googlecompute.html.md @@ -41,8 +41,7 @@ For `gcloud`, do this via the `--scopes` parameter: ``` {.sh} gcloud compute --project YOUR_PROJECT instances create "INSTANCE-NAME" ... \ - --scopes "https://www.googleapis.com/auth/compute" \ - "https://www.googleapis.com/auth/devstorage.full_control" \ + --scopes "https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/devstorage.full_control" \ ... ```