gcloud コマンドで configuration の名称を変更する

結論

~/.config/gcloud/configurations 内にあるファイルのファイル名を変更する。

補足

上記の場所にあるファイル名は接頭語として config_ が付与されています。接頭語を除いた文字列が configuration の名称となります。

$ ls ~/.config/gcloud/configurations
config_foo config_bar

$ gcloud config configurations list
NAME      IS_ACTIVE  ACCOUNT         PROJECT           COMPUTE_DEFAULT_ZONE  COMPUTE_DEFAULT_REGION
foo  ...
bar  ...

$ mv ~/.config/gcloud/configurations/config_foo ~/.config/gcloud/configurations/config_hogehoge

$ gcloud config configurations list
NAME      IS_ACTIVE  ACCOUNT         PROJECT           COMPUTE_DEFAULT_ZONE  COMPUTE_DEFAULT_REGION
hogehoge  ...
bar  ...

変更後はアクティベートしておきましょう。

$ gcloud config configurations activate hogehoge
Activated [hogehoge].
Powered by はてなブログ