mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-28 23:30:28 +00:00
15 lines
531 B
TypeScript
15 lines
531 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"),
|
|
HoneycombApiKey: new sst.Secret("HONEYCOMB_API_KEY"),
|
|
HoneycombWebhookSecret: new random.RandomPassword("HoneycombWebhookSecret", { length: 24 }),
|
|
UpstashRedisRestUrl: new sst.Secret("UpstashRedisRestUrl"),
|
|
UpstashRedisRestToken: new sst.Secret("UpstashRedisRestToken"),
|
|
}
|