1 Answers
The global CLI options of gsutil
does not have any switch for choosing a project, but it’s up to each sub-command like ls
, mb
, etc.
For example, to list a GCS bucket by specifying the project:
gsutil ls -p <project ID or project number> gs://<bucket name>
So the above command was just simply in an incorrect format.