繁体   English   中英

从 AWS 机密管理器中提取数据库详细信息会引发错误 - Python

[英]Extract db details from AWS secret manager throws an error - Python

我正在使用下面的 Python 代码从密码管理器中提取数据库详细信息,但不断收到相同的错误“无法找到凭据”。 我究竟做错了什么?

import boto3  # Required to interact with AWS
import psycopg2
import base64
from botocore.exceptions import ClientError

secret_name = "X"
region_name = "X"

session = boto3.session.Session()

client = session.client(
    service_name='secretsmanager',
    region_name=region_name
)

try:
    get_secret_value_response = client.get_secret_value(
        SecretId=secret_name
    )
except ClientError as e:
    if e.response['Error']['Code'] == 'ResourceNotFoundException':
        print("The requested secret " + secret_name + " was not found")
    elif e.response['Error']['Code'] == 'InvalidRequestException':
        print("The request was invalid due to:", e)
    elif e.response['Error']['Code'] == 'InvalidParameterException':
        print("The request had invalid params:", e)
else:
    # Decrypted secret using the associated KMS CMK
    # Depending on whether the secret was a string or binary, one of these fields will be populated
    if 'SecretString' in get_secret_value_response:
        secret = json.loads(get_secret_value_response['SecretString'])
    else:
        binary_secret_data = get_secret_value_response['SecretBinary']

user = secret['username']
password = secret['password']
db_name = secret['dbname']
host = secret['host']

conn = psycopg2.connect(host='host',port='5432',database=db_name, user=user, password=password)

您需要配置 AWS 凭证以与 AWS API 交互,否则您会收到Unable to locate credentials错误。

配置凭据有多种方法,因此只需查看此文档并选择最适合您需求的方法即可。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM