はじめに
複数のプロジェクトでawsの仕事をしていると、プロジェクトごとにユーザーを切り替えたいことがあります。
そんなユーザーを切り替える方法です。
設定
以下のように--profile
を使用してプロファイルを作成します。
$ aws configure --profile test-user
AWS Access Key ID [None]: {アクセスキー}
AWS Secret Access Key [None]: {シークレットアクセスキー}
Default region name [None]: ap-northeast-1
Default output format [None]: json
プロファイルの切り替え
設定したプロファイルは以下のように--profile
を指定して切り替えます。
aws configure list --profile test-user