如何使用 Boto3 获取 AWS Secret Manager 中所有密钥的列表

awsboto3pythonserver side programmingprogramming

问题陈述:使用 Python 中的 boto3 库获取 AWS Secret Manager 中所有密钥的列表

解决此问题的方法/算法

  • 步骤 1:导入 boto3botocore 异常来处理异常。

  • 步骤 2:这里没有参数。

  • 步骤 3:使用 boto3 lib 创建 AWS 会话。确保在默认配置文件中提到 region_name。如果没有提及,则在创建会话时明确传递 region_name

  • 步骤 4:secretmanager 创建 AWS 客户端。

  • 步骤 5: 调用 list_secrets 函数检索所有密钥。

  • 步骤 6: 返回所有密钥的元数据。

  • 步骤 7: 如果在获取所有密钥的详细信息时出现问题,则处理通用异常。

示例代码

使用以下代码获取 AWS Secret Manager 中所有密钥的列表 −

import boto3
from botocore.exceptions import ClientError

def get_all_secrets():
   session = boto3.session.Session()
   s3_client = session.client('secretmanager')
   try:
   response = s3_client.list_secrets()
   return response
   except ClientError as e:
      raise Exception("boto3 client error in get_all_secrets: " + e.__str__())
   except Exception as e:
      raise Exception("Unexpected error in get_all_secrets: " + e.__str__())

a = get_all_secrets()
for details in a['SecretList']:
print(details['Name'])

输出

tests/secrets
tests/aws/secrets
tests/aws/users

相关文章