这似乎是一项简单的任务,但不知何故失败了:AWS客户端看不到~/.aws/credentials
中指定的凭据。该文件看起来如下:
[me]
aws_access_key_id=xxxx
aws_secret_access_key=yyyyy
[alter_ego]
aws_access_key_id=xxxxx
aws_secret_access_key=yyyyy
我在python3上使用awscli-1.11.128
。当我运行aws configure list
(有或没有sudo)时,我得到:
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_CREDENTIAL_PROFILES_FILE
设置为无效:
export AWS_CREDENTIAL_PROFILES_FILE=~/.aws/credentials
可能出现什么问题?
答案 0 :(得分:5)
这些是非默认凭证组,因此您必须明确地选择它们:
$ aws --profile alter_ego configure list
$ aws --profile me configure list