📝

Google Cloud CLIでのアカウント切り替え

2024/02/08に公開

会社と個人用でアカウントを切り替えることが多くなったのですが、やり方が分からなかったのでアカウントを切り替えるたびにgcloud auth application-default loginってやっていたのでそろそろちゃんと調べようと思って調べました

gcloudはいくつかconfigurationsをもたせることができるみたいなのでconfigurationsを都度切り替えればいいみたいですね

# configurationsの一覧を表示
gcloud config configurations list

NAME     IS_ACTIVE  ACCOUNT            PROJECT       COMPUTE_DEFAULT_ZONE  COMPUTE_DEFAULT_REGION
default  True       *****@example.com  your-project  your-region        your-region
# 新たにconfigurationsを作成
gcloud config configurations create your-configurations
Created [your-configurations].
Activated [your-configurations].

# googleにログイン
gcloud auth login

configurationsを切り替えるには以下のコマンド

gcloud config configurations activate your-configurations

参考

こちらの記事を参考にさせていただきました
https://blog.pokutuna.com/entry/gcloud-switch-configurations

Discussion