mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-13 15:44:56 +00:00
12 lines
347 B
TypeScript
12 lines
347 B
TypeScript
sst.Linkable.wrap(random.RandomPassword, (resource) => ({
|
|
properties: {
|
|
value: resource.result,
|
|
},
|
|
}))
|
|
|
|
export const SECRET = {
|
|
R2AccessKey: new sst.Secret("R2AccessKey", "unknown"),
|
|
R2SecretKey: new sst.Secret("R2SecretKey", "unknown"),
|
|
HoneycombWebhookSecret: new random.RandomPassword("HoneycombWebhookSecret", { length: 24 }),
|
|
}
|