Accessing AWS Secrets Manager from Redshift cluster

0

Hi, is there any possibility to access a secret and its content, stored in AWS Secrets Manager using a sql query from a Redshift cluster?

2 réponses
2
Réponse acceptée

You can use Lambda UDFs to retrieve AWS Secret Manager secret's information using SQL statements in Redshift.

  1. Create a lambda function that takes secret ARN as input and returns the required information from secret as output
  2. Create a Lambda UDF in Redshift to invoke the lambda function using SQL statements

Example provided in this blog shows how to access Amazon DynamoDB using Lambda UDFs. You can access AWS Secret Manager in a similar way. You can follow this blog to understand how to retrieve secret information securely using AWS Lambda

Also, that there are many other alternative ways to retrieve secrets. You can retrieve from AWS console, the AWS CLI (get-secret-value) or using the GetSecretValue API .Please refer to retrieve secrets documentation to know more about these alternatives.

AWS
répondu il y a un an
AWS
EXPERT
vérifié il y a un an
0

Hi,

One option is to use redshift data api (https://docs.aws.amazon.com/redshift/latest/mgmt/data-api.html), in combination with sdk libraries (https://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/SecretsManager.html) and combine/filter the results.

Hope it helps ;)

profile picture
EXPERT
répondu il y a un an

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions