Profile の一覧を表示する

~/.aws/config~/.aws/credentialsなどに設定したAWS Profileの一覧を表示するには、aws configure list-profiles コマンドを実行する。

$ aws configure list-profiles
example-staging
example-production

例えば~/.aws/configに以下のような設定がある場合。

[profile example-staging]
region = ap-northeast-1

[profile example-production]
region = ap-northeast-1

aws configure list-profiles コマンドを実行すると、example-stagingexample-production が表示される。

$ aws configure list-profiles
example-staging
example-production