LoginSignup
135

More than 5 years have passed since last update.

awscliの設定切り替え

Posted at

まず最初にデフォルト設定を作成する

aws configure

デフォルト以外の設定を作る

aws configure --profile test-user

こんな感じの設定ファイルが~/.aws/configに作成される

[default]
aws_access_key_id=AKISUSHIUMAIUMAI
aws_secret_access_key=uniOotoroMaGUrOIKATAKOunaG18machi
region = ap-northeast-1

[profile test-user]
aws_access_key_id = AKINIKUYORISUSHI
aws_secret_access_key = B1nch0SAbAYariIkaH0taTEAj13MA
region=us-west-2

awscli実行の際は、

aws s3 list --profile test-user

のようにするか

export AWS_DEFAULT_PROFILE=test-user
aws s3 list

のように環境変数で指定する

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
135