aws configure list

表題を知らなかったのでメモ。

■ 環境

awscli 1.15.60
macOS High Sierra

■ aws

参考にさせてもらってるブログで記載されていたので試してみた。

$ aws --profile production configure list
      Name                    Value             Type    Location
      ----                    -----             ----    --------
   profile               production           manual    --profile
access_key     ****************XXXX shared-credentials-file
secret_key     ****************xxxx shared-credentials-file
    region           ap-northeast-1      config-file    ~/.aws/config
$

どのprofileを使うか、鍵は何かがわかるようだ。上記では`access_key`/`secret_key`は別ファイルに書き出されてるよ、と教えてくれる。環境変数で指定しているものが適用されているときは”Type”に”env”と記載されるようだ。

profile“を指定して実行したところ、そちらも思い通りの結果を得られた。

以上。