summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--infra/console.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/infra/console.ts b/infra/console.ts
index 626697c2f..578546fc6 100644
--- a/infra/console.ts
+++ b/infra/console.ts
@@ -97,6 +97,19 @@ export const stripeWebhook = new stripe.WebhookEndpoint("StripeWebhookEndpoint",
],
})
+const zenProduct = new stripe.Product("ZenBlack", {
+ name: "OpenCode Black",
+})
+const zenPrice = new stripe.Price("ZenBlackPrice", {
+ product: zenProduct.id,
+ unitAmount: 20000,
+ currency: "usd",
+ recurring: {
+ interval: "month",
+ intervalCount: 1,
+ },
+})
+
const ZEN_MODELS = [
new sst.Secret("ZEN_MODELS1"),
new sst.Secret("ZEN_MODELS2"),