📝
Google Cloudプロジェクトの作成とSDKのセットアップガイド
はじめに
今回の記事では、Google Cloud SDKのセットアップとGoogle Cloudプロジェクトを作成する手順を紹介します。
この設定により、Google Cloud API GatewayをFirebaseを連携させるための基盤が整います。
プロジェクトの作成
- Google Cloud Console任意のアカウントでログインします。https://console.cloud.google.com/home/dashboard
- 画面左上にある「My First Project」をクリックします。
3.右上に新しいプロジェクトをクリックします。
4.必要な情報を入力し、作成をクリックするとプロジェクトが作成されます。
Google Cloud SDKのセットアップ
gcloudの設定を初期化する。
gcloud init
Pick configuration to use:
[1] Re-initialize this configuration [default] with new settings
[2] Create a new configuration
既存の構成がある場合は番号が表示されるので、既存の設定を使用する場合は1と新しい構成を作成する場合は2を選択し構成に名前をつけます。
Choose the account you would like to use to perform operations for this configuration:
[1] xxxx@xxx.xxx
[2] Log in with a new account
使用するアカウントを求められるので、現在のアカウントを使用する場合は1を別のアカウントを使用する場合は2を選択します。
使用するクラウドプロジェクトの選択を求められるので、先ほど作成したプロジェクトを選択します。
Your current project has been set to: [xxxxxxxx].
Do you want to configure a default Compute Region and Zone? (Y/n)? Y
デフォルトのリージョンの設定有無を聞かれるので、Yにします。
リージョンの番号の入力を求められるので、日本のある32、33、34のどれかを選択します。
Which Google Compute Engine zone would you like to use as project default?
If you do not specify a zone via a command line flag while working with Compute
Engine resources, the default is assumed.
[32] asia-northeast1-b
[33] asia-northeast1-c
[34] asia-northeast1-a
これでGoogle Cloud SDKのセットアップは完了です。
gcloud config list
このプロパティは上記コマンドを使用していつでも表示できます。
[compute]
region = asia-northeast1
zone = asia-northeast1-b
[core]
account = XXXXXXXXXXX
disable_usage_reporting = True
project = XXXXXXXXXX
Your active configuration is: [default]
参考
Discussion