diff options
| author | Frank <[email protected]> | 2025-09-08 15:57:29 -0400 |
|---|---|---|
| committer | Frank <[email protected]> | 2025-09-08 15:57:29 -0400 |
| commit | eb3c820fb81c579bb6d5ba7f1dd0b95a63083e5f (patch) | |
| tree | 5f65c22a714bc3f0b4168f389004138488cedbbd /infra | |
| parent | 3468808fc64bfaf1ff7d5d3cf7de878b61f663e2 (diff) | |
| download | opencode-eb3c820fb81c579bb6d5ba7f1dd0b95a63083e5f.tar.gz opencode-eb3c820fb81c579bb6d5ba7f1dd0b95a63083e5f.zip | |
wip: zen
Diffstat (limited to 'infra')
| -rw-r--r-- | infra/cloud.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/cloud.ts b/infra/cloud.ts index 72abbcb7e..9cb5a83f1 100644 --- a/infra/cloud.ts +++ b/infra/cloud.ts @@ -103,7 +103,6 @@ const ANTHROPIC_API_KEY = new sst.Secret("ANTHROPIC_API_KEY") const XAI_API_KEY = new sst.Secret("XAI_API_KEY") const BASETEN_API_KEY = new sst.Secret("BASETEN_API_KEY") const STRIPE_SECRET_KEY = new sst.Secret("STRIPE_SECRET_KEY") -const HONEYCOMB_API_KEY = new sst.Secret("HONEYCOMB_API_KEY") const AUTH_API_URL = new sst.Linkable("AUTH_API_URL", { properties: { value: auth.url.apply((url) => url!) }, }) @@ -117,6 +116,7 @@ const STRIPE_WEBHOOK_SECRET = new sst.Linkable("STRIPE_WEBHOOK_SECRET", { let logProcessor if ($app.stage === "production" || $app.stage === "frank") { + const HONEYCOMB_API_KEY = new sst.Secret("HONEYCOMB_API_KEY") logProcessor = new sst.cloudflare.Worker("LogProcessor", { handler: "cloud/function/src/log-processor.ts", link: [HONEYCOMB_API_KEY], |
