Skip to content

Commit 55fdf52

Browse files
committed
Add Lambda function package configurations
1 parent 41c7860 commit 55fdf52

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"name": "lambda-to-postgres",
3+
"version": "1.0.0",
4+
"description": "Lambda function that calls PostgreSQL",
5+
"main": "index.js",
6+
"dependencies": {
7+
"pg": "^8.11.3",
8+
"@aws-sdk/client-secrets-manager": "^3.450.0"
9+
}
10+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"name": "postgres-setup",
3+
"version": "1.0.0",
4+
"dependencies": {
5+
"pg": "^8.11.3",
6+
"@aws-sdk/client-secrets-manager": "^3.0.0",
7+
"node-fetch": "^3.3.2"
8+
}
9+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "postgres-to-lambda",
3+
"version": "1.0.0",
4+
"description": "Lambda function that is called by PostgreSQL",
5+
"main": "index.js",
6+
"dependencies": {}
7+
}

0 commit comments

Comments
 (0)