2
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?

More than 3 years have passed since last update.

個人的によく使うgcloudコマンドまとめ ~ プロジェクト管理・認証関連 ~

Last updated at Posted at 2020-12-09

はじめに

普段よく使うgcloudコマンドをまとめたメモです。
ここでは主にプロジェクト管理、認証関連についてまとめています。
コマンドのオプションについては私が利用しているものだけを掲載しています。

コマンドリスト

プロジェクト/アカウント関連

# configurationの確認 *cloudshellより発行
$ gcloud config list
[component_manager]
disable_update_check = True
[compute]
gce_metadata_read_timeout_sec = 30
[core]
account = [ここにaccount name]
disable_usage_reporting = True
project = [ここにproject id]
[metrics]
environment = devshell

Your active configuration is: [cloudshell-17805]
# configurationの一覧表示
$ gcloud config configurations list
NAME              IS_ACTIVE  ACCOUNT  PROJECT                COMPUTE_DEFAULT_ZONE  COMPUTE_DEFAULT_REGION
cloudshell-17805  True                [ここにproject id]
# プロジェクトの切替
$ gcloud config set project [ここにproject]
# アカウントの切替
$ gcloud config set core/account [ここにaccount]

認証

# 認証
$ gcloud auth [COMMAND]

* [COMMAND]は以下のいずれかです。
・activate-service-account :サービスアカウントを使用してGoogleCloudPlatformへのアクセスを承認
・list :資格情報のあるアカウントを一覧表示
・login :gcloudがGoogleユーザー認証情報を使用してCloudPlatformにアクセスすることを承認
・revoke :アカウントのアクセス資格情報を取り消し

gcloudヘルプ

# gcloudコマンドヘルプを表示
$ gcloud help [COMMAND] 

例) gcloud help compute

参考資料

Google Cloud SDKのドキュメント

2
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
2
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?