aws: add note on lambda dir structure

This commit is contained in:
thomasabishop 2023-06-12 07:24:03 +01:00
parent aa63c0b1bb
commit 88ea884f4f

View file

@ -0,0 +1,24 @@
---
categories:
- DevOps
- Backend
tags: [AWS]
---
# Lambda directory structure
I am using the following structure for my lambdas:
```
lambda-name/
events/
function-name/
src/
index.js
tests/
local-env.json
production-env.json
package.json
template.yaml
README.md
```