我可以指定默认的 AWS 配置文件吗?

Can I specify a default AWS configuration profile?

在我的开发环境中,我经常在多个 AWS 访问密钥之间切换。所以在我的 ~/.aws/credentials 文件中,我有几个配置文件。然后,我可以通过指定 --profile <name> 标志将这些配置文件与 aws-cli 一起使用。

我开发了几个使用 Ruby AWS SDK 的应用程序。它们被设置为从 ~/.aws/credentials 文件中读取凭据(SDK 默认执行此操作,请参阅此 configuration article)。

问题是 SDK 总是从 default 配置文件中读取。我希望能够将其配置为从其他一些配置文件中读取。这可能吗?

我尝试在我的环境中设置默认配置文件:

export AWS_DEFAULT_PROFILE=<profile name>

configuring the AWS Command Line Interface 中所述,但似乎仅适用于 aws-cli 而不适用于 SDK。

对于 SDK:

By setting the AWS_PROFILE environment variable to the profile you want to use.

对于 CLI:

发件人:A New and Standardized Way to Manage Credentials in the AWS SDKs

"AWS_DEFAULT_PROFILE is correct for the AWS CLI. The AWS CLI respects AWS_PROFILE if it is set, but AWS_DEFAULT_PROFILE takes precedence."