11import { domain } from "./stage"
22import { EMAILOCTOPUS_API_KEY } from "./app"
3+ import { SECRET } from "./secret"
34
45////////////////
56// DATABASE
@@ -221,8 +222,6 @@ const AUTH_API_URL = new sst.Linkable("AUTH_API_URL", {
221222const STRIPE_WEBHOOK_SECRET = new sst . Linkable ( "STRIPE_WEBHOOK_SECRET" , {
222223 properties : { value : stripeWebhook . secret } ,
223224} )
224- const INCIDENT_WEBHOOK_SIGNING_SECRET = new sst . Secret ( "INCIDENT_WEBHOOK_SIGNING_SECRET" )
225- const DISCORD_INCIDENT_WEBHOOK_URL = new sst . Secret ( "DISCORD_INCIDENT_WEBHOOK_URL" )
226225
227226const gatewayKv = new sst . cloudflare . Kv ( "GatewayKv" )
228227
@@ -233,6 +232,7 @@ const gatewayKv = new sst.cloudflare.Kv("GatewayKv")
233232const bucket = new sst . cloudflare . Bucket ( "ZenData" )
234233const bucketNew = new sst . cloudflare . Bucket ( "ZenDataNew" )
235234
235+ const DISCORD_INCIDENT_WEBHOOK_URL = new sst . Secret ( "DISCORD_INCIDENT_WEBHOOK_URL" )
236236const AWS_SES_ACCESS_KEY_ID = new sst . Secret ( "AWS_SES_ACCESS_KEY_ID" )
237237const AWS_SES_SECRET_ACCESS_KEY = new sst . Secret ( "AWS_SES_SECRET_ACCESS_KEY" )
238238
@@ -254,8 +254,8 @@ new sst.cloudflare.x.SolidStart("Console", {
254254 database ,
255255 AUTH_API_URL ,
256256 STRIPE_WEBHOOK_SECRET ,
257- INCIDENT_WEBHOOK_SIGNING_SECRET ,
258257 DISCORD_INCIDENT_WEBHOOK_URL ,
258+ SECRET . HoneycombWebhookSecret ,
259259 STRIPE_SECRET_KEY ,
260260 EMAILOCTOPUS_API_KEY ,
261261 AWS_SES_ACCESS_KEY_ID ,
0 commit comments