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 Antworten
2
Akzeptierte Antwort

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
beantwortet vor einem Jahr
AWS
EXPERTE
überprüft vor einem Jahr
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
EXPERTE
beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen