如何从 .aws/credentials 为 aws cli 获取 AWS 凭证配置文件

How to source AWS credentials profile from .aws/credentials for aws cli

我的 .aws/credentials 文件中有以下 AWS 编程访问凭据。

如何指定用于 AWS cli 命令的凭据?并验证正在使用哪些凭据?

验证:

AWS_PROFILE=amplify aws sts get-caller-identity

# OR

aws sts get-caller-identity --profile amplify

与运行命令相同:

AWS_PROFILE=default aws eks --region .......

# OR

aws eks --region ....... --profile default