feat(infra): Use a shared VPC (#218)

## Description
The scope of this PR is to add a shared VPC for everyone on the team.
This commit is contained in:
Wanjohi
2025-03-26 06:29:25 +03:00
committed by GitHub
parent 633b332700
commit 7ecc068466
10 changed files with 27 additions and 48 deletions

View File

@@ -1,5 +1,5 @@
import { vpc } from "./vpc";
import { email } from "./email";
// import { email } from "./email";
import { allSecrets } from "./secret";
import { postgres } from "./postgres";
@@ -9,7 +9,7 @@ bus.subscribe("Event", {
vpc,
handler: "./packages/functions/src/event/event.handler",
link: [
email,
// email,
postgres,
...allSecrets
],