👌
AWS cliの導入メモ
AWS Cliのインストールの説明は割愛します。
認証情報が何も設定されていない状態
>>> aws configure list
Name Value Type Location
---- ----- ---- --------
profile <not set> None None
access_key <not set> None None
secret_key <not set> None None
region <not set> None None
認証情報の設定
プロファイル名は、ユーザ名前等自由に入力します。
>>> aws configure --profile <プロファイル名を入力>
AWS Access Key ID [None]: <アクセスキーを入力>
AWS Secret Access Key [None]: <シークレットキーを入力>
Default region name [None]: <リージョンを入力 例:ap-northeast-1>
Default output format [None]: <アウトプットフォーマットの形式を入力 例:json>
プロファイルの適用
デフォルトプロファイルを設定
$ export AWS_DEFAULT_PROFILE=<プロファイル名>
設定の確認
$ aws configure list
Discussion