如何使用 Boto3 在 AWS Secrets Manager 中创建纯文本密钥


问题陈述: 使用 Python 中的 boto3 库在 AWS Secrets Manager 中创建纯文本密钥

解决此问题的方法/算法

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

  • 步骤 2: secret_stored_locationsecret_key_pair 是必需的参数。它是一个保存带有给定键值对的密钥的地方。确保 secret_key_pair 写成 字符串,而不是 字典。例如:'{key:pair}'

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

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

  • 步骤 5: 调用 create_secret 并将 secret_stored_location 作为 Name 参数,将 secret_key_pair 作为 SecretString 参数传递。

  • 步骤 6: 它返回已添加密钥的元数据。

  • 步骤 7: 如果创建密钥时出现错误,则处理通用异常。

示例代码

使用以下代码在 AWS Secrets Manager 中创建密钥:

import boto3
from botocore.exceptions import ClientError

def create_secret_details(secret_stored_location, secret_key_pair:str):
   session = boto3.session.Session()
   s3_client = session.client('secretmanager')
   try:
   response = s3_client.create_secret(Name=secret_stored_location,SecretString = secret_key_pair)
   return response
   except ClientError as e:
      raise Exception("boto3 client error in create_secret_details: " + e.__str__())
   except Exception as e:
      raise Exception("Unexpected error in create_secret_details: " + e.__str__())

details = '{"user_test":"test"}'
a = get_decrypted_secret_details('/secrets/aws', details)
print(a)

输出

{'ARN': 'arn:aws:secretsmanager:us-east-1:***************:secret:/secrets/aws-wr1Aj6', 'Name': '/secrets/aws', 'VersionId': 'fcdc1b5b-2a35-4d12-9d84-65d529651d2e', '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}}

更新于: 2021年4月16日

978 次浏览

启动你的职业生涯

完成课程获得认证

开始学习
广告