首页 > 解决方案 > 如何使用 .aws 中的所有凭据执行 Boto3 脚本?

问题描述

我有一个可以使用的 boto3 脚本。当我从 .aws 凭据文件中指定配置文件名称时,它工作正常。但是,我想在我的 .aws 凭证文件中存在的所有配置文件中运行该脚本。而且,我有 20 多个个人资料。如何自动配置 boto3 以继续获取配置文件并返回输出?

#Listing the validity of SSL certs in RDS
import boto3
from pprint import pprint

rds = boto3.client('rds')

sslcert = rds.describe_certificates()

for cert in sslcert['Certificates']:
    print('Valid till', cert['ValidTill'])

标签: python-3.xamazon-web-servicesboto3amazon-rds

解决方案


看起来有一个功能可以列出本地 .aws/credentials 文件中的所有配置文件。

for profile in boto3.session.Session().available_profiles:
    print(profile)

推荐阅读