如何使用Boto3从AWS Secret Manager中的特定位置恢复所有密钥
问题陈述: 使用Python中的 boto3 库从AWS Secret Manager的特定位置恢复所有密钥。
更多Python相关文章,请阅读:Python 教程
解决这个问题的方法/算法
- 步骤1: 导入 boto3 和 botocore 异常来处理异常。
-
步骤2: secret_stored_location 是必须的参数。
-
步骤3: 使用 boto3库 创建AWS会话。确保在默认配置文件中指定 region_name 。如果没有指定,则在创建会话时显式传递 region_name 。
-
步骤4: 创建一个AWS client,用于 secretmanager 。
-
第5步: 调用 restore_secret 并将 secret_stored_location 作为 SecretId 传递。
-
步骤6: 它返回已恢复的密钥的元数据。
-
步骤7: 如果恢复密钥时出现问题,则处理通用异常。
示例代码
使用以下代码在AWS Secret Manager中恢复密钥−
import boto3
from botocore.exceptions import ClientError
def restore_secret_details(secret_stored_location):
session = boto3.session.Session()
s3_client = session.client('secretmanager')
try:
response = s3_client.restore_secret(SecretId=secret_stored_location)
return response
except ClientError as e:
raise Exception("boto3 client error in restore_secret_details: " + e.__str__())
except Exception as e:
raise Exception("Unexpected error in restore_secret_details: " + e.__str__())
a = restore_secret_details('/secrets/aws')
print(a)
输出
{'ARN': 'arn:aws:secretsmanager:us-east-1:***************:secret:/secrets/aws-wr1Aj6', 'Name': '/secrets/aws', '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}}
极客教程