0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【gcloud config】新規作成と切り替え方法

Last updated at Posted at 2024-10-06

はじめに

gcloud CLIについて、configをdefaultのものだけでなく追加して切り替えられるようにします。

gcloud compute  |  Compute Engine Documentation  |  Google Cloud

手順

順番に実行していきます。

新規configを作成

現状、有効になっているconfigを確認

gcloud config list

既存のリストを確認

gcloud config configurations list

新しいconfigを作成する

gcloud config configurations create main-config

作成されたことを確認

gcloud config configurations list

作成したconfigを有効にする

gcloud config configurations activate main-config

gcloud認証を検証する。ブラウザに飛んでgmailアカウントの認証を行う。

gcloud auth login

作成したconfigに設定を追加する

gmailアカウント

gcloud config set core/account hogehoge@example.com

プロジェクトID

gcloud config set core/project fuga-project

利用可能なリージョン、ゾーンを確認

gcloud compute regions list
gcloud compute zones list

デフォルトリージョン、ゾーンを設定

gcloud config set compute/region asia-northeast1
gcloud config set compute/zone asia-northeast1-a

デフォルトのリージョン、ゾーンを確認

gcloud config get-value compute/region
gcloud config get-value compute/zone

まとめ

gcloud cliの設定ファイルについて、追加と切り替え方法を確認しました。

併せて記述すべき設定等があればご指摘いただけますと幸いです。

ありがとうございました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?