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?

More than 1 year has passed since last update.

【AWS】Amplify CLIの初期設定

Posted at

【AWS】Amplify CLIの初期設定

Amplifyコマンドを使用するために、@aws-amplify/cliをインストールします。

npm install -g @aws-amplify/cli

1. AWSにサインイン

自動でAWSのサインイン画面が表示されます。サインイン後、コンソール画面に戻りエンターを押して設定を続けます。

amplify configure

2. リージョン設定

以下の質問をされるので回答する。(質問内容は、変わったり増えたりする可能性があります。)

使用するリージョン

Specify the AWS Region
? region: ap-northeast-1(東京リージョン)

新規作成するIAMユーザー名
(新規となっていますが、既存のIAMユーザー名を指定することも可能)

Specify the username of the new IAM user:
? user name:  <任意のユーザー名>

ユーザー名を入力すると、自動でIAMユーザー作成画面が表示されます。

3.プロファイル設定

Enter the access key of the newly created user:
? accessKeyId:  <アクセスキー>
? secretAccessKey:  <シークレットアクセスキー>

プロファイル名
任意のプロファイル名を入力します。

? Profile Name:  <任意のプロファイル名>

これでAWSの認証情報が入力された設定ファイル(configとcredentials)が作成されます。
Macの場合以下ディレクトリに作成されます。(隠しフォルダになっています。)
/Users/<ユーザー名>/.aws/




最後まで読んでいただき、ありがとうございました。

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?