secret.ts 347 B

1234567891011
  1. sst.Linkable.wrap(random.RandomPassword, (resource) => ({
  2. properties: {
  3. value: resource.result,
  4. },
  5. }))
  6. export const SECRET = {
  7. R2AccessKey: new sst.Secret("R2AccessKey", "unknown"),
  8. R2SecretKey: new sst.Secret("R2SecretKey", "unknown"),
  9. HoneycombWebhookSecret: new random.RandomPassword("HoneycombWebhookSecret", { length: 24 }),
  10. }