The bicep template that deploys your customer-stack lives in our repo at infra/customer-stack.bicep and is also bundled in each Marketplace plan zip as mainTemplate.json. These parameters are typically set by the wizard or our orchestrator; you usually don’t set them by hand.
Customer-supplied (via wizard)
| Param | Type | Default | Notes |
|---|
stackName | string | required | 3-12 lowercase alphanumeric. Becomes the suffix on resource names. |
location | string | resourceGroup().location | Azure region. |
allowedOrigins | array | ["*"] | CORS allowlist. |
systemPrompt | string | "" | Optional AI system prompt. |
adminKey | secure string | "" (auto-generated if empty) | Dashboard admin key. |
pricePerInputUsdPerM | string | "0.25" | Token pricing override. |
pricePerOutputUsdPerM | string | "2.00" | Token pricing override. |
Per-plan (baked into the marketplace zip)
| Param | Notes |
|---|
planId | start | growth | professional |
seatQuantity | 3, 7, or 15 |
planDisplayName | "Start" etc. |
marketplacePlanId | pocai-start etc. |
upgradeUrl | Deep link to the Marketplace upgrade flow |
ISV-supplied (baked into the marketplace zip)
| Param | Notes |
|---|
marketplaceSubscriptionId | [concat(subscription().subscriptionId, '/', resourceGroup().name)] |
deploymentId | [deployment().name] |
isvDeployStatusUrl | Our /api/deploy-status endpoint |
isvSeatReportUrl | Our /api/seat-report endpoint |
isvAppId | Our AAD application id |