1
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 プログラミングノート

Last updated at Posted at 2024-09-08

awsをCLIから使用する時に行うべきこと

以下のコマンドでプロファイルを選択して作業を行う

aws configure --profile 名前

以下のコマンドで今自分が使用しているAWSアカウントがどれかわかる

aws sts get-caller-identity --profile 名前

以下のように表示される

{
    "UserId": "AAAAA",
    "Account": "111111",
    "Arn": "arn:aws:iam::1111:user/IAMのユーザー名"
}

これをAWSマネジメントコンソールの右上クリック→アカウント→アカウントIDと進み、この値が上記のAccountと一致すればOK

またコンソールのリージョンがCLIのものと一致しているか確認する

profileの確認、変更

ホームディレクトリで以下を実行

ls -a

.awsというディレクトリを見つけ、移動する。そこでlsコマンドを打つと

ls
amplify		config		credentials

と表示される。config,credentialsをクリックしてファイルを開き編集する。

credentials

[default]
aws_access_key_id = a
aws_secret_access_key = a

config

[default]
region=ap-northeast-1

プロファイルを追加したければ任意の名前で追加すればOK

samのデプロイコマンドを例にプロファイルの切り替えの方法を説明

sam deploy guided --profile default

Lambda

S3

CloudWatch

CloudFormation

1
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
1
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?