如何使用 Boto3 从 AWS Secret Manager 中的特定位置获取密钥的详细信息

问题陈述:使用Python 中的boto3库从 AWS Secret Manager 中的特定位置获取密钥的详细信息。

解决这个问题的方法/算法

  • 第一步:导入boto3和botocore异常处理异常。

  • 第 2 步:secret_stored_location是必需的参数。

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

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

  • 第 5 步:调用describe_secret并将secret_stored_location作为SecretId 传递。

  • 第 6 步:它返回秘密的元数据。

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

示例代码

使用以下代码获取 AWS secret Manager 中的机密详细信息 -

import boto3

frombotocore.exceptionsimport ClientError

def get_secret_details(secret_stored_location):

   session = boto3.session.Session()

   s3_client = session.client('secretmanager')

   try:

   response = s3_client.describe_secret(SecretId=secret_stored_location)

   return response

   except ClientError as e:

      raise Exception("boto3 client error in get_secret_details: " + e.__str__())

   except Exception as e:

      raise Exception("Unexpected error in get_secret_details: " + e.__str__())

a = get_secret_details('/secrets/aws')

print(a)

输出结果
{'ARN': 'arn:aws:secretsmanager:us-east-1:***************:secret:/secrets/aws-wr1Aj6', 'Name': '/secrets/aws', 'LastChangedDate': datetime.datetime(2021, 4, 3, 17, 6, 57, 601000, tzinfo=tzlocal()), 'LastAccessedDate': datetime.datetime(2021, 4, 3, 5, 30, tzinfo=tzlocal()), 'VersionIdsToStages': {'f5308bed-7c23-4d47-a32b-8f2a5f044e53': ['AWSCURRENT'], 'fcdc1b5b-2a35-4d12-9d84-65d529651d2e': ['AWSPREVIOUS']}, 'ResponseMetadata': {'RequestId': 'b32fe48d**************ab', 'HTTPStatusCode': 200, 'HTTPHeaders': {'date': 'Sat, 03 Apr 2021 09:40:48 GMT', 'content-type': 'application/x-amz-json-1.1', 'content-length': '197', 'connection': 'keep-alive', 'x-amzn-requestid': *********************************}, 'RetryAttempts': 0}}

以上是 如何使用 Boto3 从 AWS Secret Manager 中的特定位置获取密钥的详细信息 的全部内容, 来源链接: utcz.com/z/359461.html

回到顶部