awsアカウントについて
1 PCに登録されているリストの確認
$ aws configure list-profiles
xxx-xxxx
default
xxxx.xxxx.xxx
xxx-xxx-xxx
2 詳細内容確認(アクセスキーちらみせ)
$ aws configure list --profile xxx-xxx-xxx
Name Value Type Location
---- ----- ---- --------
profile xxx-xxx-xxx manual --profile
access_key ****************xxx shared-credentials-file
secret_key ****************xxx shared-credentials-file
region ap-northeast-1 config-file ~/.aws/config
3 プロファイルがどこのアカウントだったか
(このプロファイルどのアカウントのものだっけ?というとき)
aws sts get-caller-identity --profile xxx
{
"UserId": "",
"Account": "",
"Arn": "arn:aws:iam::xxxxx:user/x.xxx"
}