Mark Chassy
Mark Chassy

Reputation: 159

Lambda ==> RDS ==> QuickSight

What I'm trying to do

I am working on a lambda function which will simply register some metadata about files which are uploaded onto an s3 bucket. This is not about actually processing the data in the files yet. To start with, I just want to register the fact that certain files have been uploaded or not. Then I want to connect that metadata to QuickSight just so that we can have a nice visual about which files have been uploaded.

What I've done so far

This part is fairly easy:

Where I'm stuck

But the lambda function can't connect.

Any Ideas ??

I am even thinking about this right?

Upvotes: 0

Views: 451

Answers (1)

Jason Wadsworth
Jason Wadsworth

Reputation: 8885

Two things.

  1. You shouldn't have to put your RDS in a DMZ. See this article about granting QuickSight access to your RDS: https://docs.aws.amazon.com/quicksight/latest/user/enabling-access-rds.html
  2. In order for a lambda to access something in a VPC (like and RDS instance) the lambda must have a VPC configuration. https://docs.aws.amazon.com/lambda/latest/dg/configuration-vpc.html

Upvotes: 1

Related Questions