Reputation: 8704
On my work laptop, i have gcloud configured with our prod projects. when i do gcloud config configurations list
, I get only one row in result, which is ACTIVE and it's my work-project.
Now for some personal testing, I have created a separate project which is associated with my personal email id. How would i configure/connect this project with my gcloud cli?
I have tried
gcloud auth application-default login
which opened the browser, i signed in using personal email id. The webpage showed me OK
and the console never changed.
I have also tried gcloud auth login <personal_email_id>@gmail.com
and got the same result.
So how can i connect my personal google projects to the same gcloud which is connected to my work-prod projects. Is it even possible?
Upvotes: 4
Views: 6348
Reputation: 75745
You are mixing 2 things:
You can have several Gcloud config profile for easily switching from 1 configuration to another one. Use gcloud init
to start the config. You could override the current config or define a new one. Then, you could perform gcloud config configurations activate <config Name>
to switch between your configurations
For listing the projects of which your current user have access, use the command gcloud projects list
Here you can also find a more detailed tutorial about how to configure Google Cloud SDK for multiple projects that may be helpful to you.
Upvotes: 9