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?

AWS CLI 備忘録

Posted at

この記事について

AWS CLI でよく使うコマンドを個人的な備忘のためにまとめます。

プロファイル関係

AWS CLI をどのアカウントのどのユーザーとして使うかを管理する。
こちらは AWS CLI ではなく一般的なターミナルのコマンドとして行う。

プロファイルの一覧を見る

どんなプロファイルを作っていたかを確認する

プロファイルの一覧を見る
cat ~/.aws/config

出力はこんな感じ。アクセスキーなどは表示されない。profile のあとの名前でアクセスを切り分ける。

出力結果
[profile chihiro-work]
region = us-east-1
output = json
[profile chihiro-personal]
region = ap-northeast-1
output = json

プロファイルの切り替え

AWSCLIコマンドをどのプロファイルでたたくかを切り替える

プロファイルの切り替え
export AWS_PROFILE=プロファイル名

S3関係

バケットの一覧を表示

バケットの一覧を表示
aws s3 ls

ファイルのアップロード

バケットの一覧を表示
aws s3 cp コピー元ファイルのパス s3://bucket-name/path/

今のところは以上です

ちょこまか足していきます。

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?