user2041357
user2041357

Reputation: 15

What is the Best way to Expose Data from an AWS RDS Mysql DB?

I currently have a mysql database on AWS RDS.

I am in need of accessing and looking up information on a daily basis of the data in that database via an external CRM.

In an ideal scenario, I could create an API on Lambda that would have access to the RDS instance and have that be my front facing API that my CRM API could hit up and lookup and work with my mysql data.

My question is... is this the best way to do it? Is there some sort of service out there that facilitates me creating an API or do I need to create an API from scratch...

Any suggestions? Thanks a bunch!

Upvotes: 0

Views: 570

Answers (1)

Chris Simon
Chris Simon

Reputation: 6505

You will have to create your own AWS Lambda app, but there is a framework - the Serverless Framework which will make the whole endeavour much easier!

This Tutorial on Accessing RDS from AWS Lambda might help as well.

Upvotes: 2

Related Questions