AWS入門 AWS CLI(AWS Command Line Interface)をインストールする方法

環境
Windows10 64bit
AWS CLI

操作方法
1.AWS CLIのインストールを行う
参考
https://docs.aws.amazon.com/ja_jp/cli/latest/userguide/cli-chap-getting-started.html

2.Windows10 コマンドプロンプトを起動します。

3..以下のコマンドを実行します。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
>aws --version
aws-cli/2.13.37 Python/3.11.6 Windows/10 exe/AMD64 prompt/off
>aws --version aws-cli/2.13.37 Python/3.11.6 Windows/10 exe/AMD64 prompt/off
>aws --version
aws-cli/2.13.37 Python/3.11.6 Windows/10 exe/AMD64 prompt/off

4.CLIの設定
ローカルのターミナルからAWSのリソースを触るためにはAccess KeyとSecretが必要です。
AMユーザーを作ってキーを発行します。
aws configureを実行することで対話的な入力ができます。

5.aws configure設定を行う

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
>aws configure --profile mfa
AWS Access Key ID [None]: AKxxxx
AWS Secret Access Key [None]: Djknxxxx
Default region name [None]:ap-northeast-1]
Default output format [None]: json
>aws configure --profile mfa AWS Access Key ID [None]: AKxxxx AWS Secret Access Key [None]: Djknxxxx Default region name [None]:ap-northeast-1] Default output format [None]: json
>aws configure --profile mfa
AWS Access Key ID [None]: AKxxxx
AWS Secret Access Key [None]: Djknxxxx
Default region name [None]:ap-northeast-1]
Default output format [None]: json

6.設定の確認

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
>aws configure list --profile mfa
Name Value Type Location
---- ----- ---- --------
profile mfa manual --profile
access_key ****************RA5T shared-credentials-file
secret_key ****************zOCf shared-credentials-file
region ap-northeast-1 config-file ~/.aws/config
>aws configure list --profile mfa Name Value Type Location ---- ----- ---- -------- profile mfa manual --profile access_key ****************RA5T shared-credentials-file secret_key ****************zOCf shared-credentials-file region ap-northeast-1 config-file ~/.aws/config
>aws configure list --profile mfa
      Name                    Value             Type    Location
      ----                    -----             ----    --------
   profile                      mfa           manual    --profile
access_key     ****************RA5T shared-credentials-file
secret_key     ****************zOCf shared-credentials-file
    region           ap-northeast-1      config-file    ~/.aws/config

7.AWSコマンド実行
aws iam list-users

AWS

Posted by arkgame