AWS CLI
code:shell
$ unzip awscliv2.zip
$ sudo ./aws/install
$ aws --version
aws-cli/2.0.13 Python/3.7.3 Linux/4.18.0-147.8.1.el8_1.x86_64 botocore/2.0.0dev17
インストール
code:shell
$ pip install awscli
環境変数
code:conf
export AWS_ACCESS_KEY_ID=xxxxxxxxxxxxxxxx # アクセスキー
export AWS_SECRET_ACCESS_KEY=xxxxxxxxxxxx # シークレットアクセスキー
export AWS_DEFAULT_REGION=xxxxxxxxxxxxxxx # リージョン ※ 東京 ap-northeast-1
現在使用しているアクセスキーの確認
code:shell
$ aws configure list --profile test
トラブルシューティングする場合には --debug をつける
AWS クレデンシャル情報は読み込み優先順位があるので注意が必要
References