Correcting CLI usage

For gcloud compute instances create, multiple scopes should be comma separated in one set of quotes
This commit is contained in:
James Portman 2017-01-05 10:34:42 +00:00 committed by GitHub
parent 35694dce61
commit 88fceff226
1 changed files with 1 additions and 2 deletions

View File

@ -41,8 +41,7 @@ For `gcloud`, do this via the `--scopes` parameter:
``` {.sh} ``` {.sh}
gcloud compute --project YOUR_PROJECT instances create "INSTANCE-NAME" ... \ gcloud compute --project YOUR_PROJECT instances create "INSTANCE-NAME" ... \
--scopes "https://www.googleapis.com/auth/compute" \ --scopes "https://www.googleapis.com/auth/compute,https://www.googleapis.com/auth/devstorage.full_control" \
"https://www.googleapis.com/auth/devstorage.full_control" \
... ...
``` ```