1
1

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 5 years have passed since last update.

AWS Cliで複数プロファイルを使う(Windows)

Posted at

デフォルトプロファイルを作成する

aws configure

名前付きでプロファイルを作成する

aws configure --profile "プロファイル名"

プロファイルの一覧を表示する

C:\WINDOWS\system32>type  %USERPROFILE%\.aws\config
[default]
region = xxxxxx
output = json
[profile user2]
region = ap-northeast-1
output = json

プロファイルを指定してコマンドを実行する

aws ec2 describe-instances --profile user2

デフォルトプロファイルを一時的に切り替える

C:\> setx AWS_DEFAULT_PROFILE user2
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?