Reuse code with Lambda Layers, not tight coupling
Code reuse is still valuable, just don’t mix concerns.
AWS Lambda Layers are a clean way to share common logic (auth, HTTP clients, parsing) without coupling domains together.
Action: extract shared utilities into a Layer and keep domain logic inside each Lambda.
optimistengineer.substa…