Skip to content

Enterprise Features

Reference for which features require an Enterprise license and which are always free.

Current Status

As of March 2026, nothing is actually gated in the codebase. All features are available during the pre-launch period. This page documents the intent — what will be gated once the product launches.

✅ Always Free

FeatureReason
Unlimited projectsThe exact cap that drove us to build Bella Baxter
Unlimited environments per projectDev/staging/prod is table stakes
Unlimited secretsCore functionality
Unlimited API keysPrimary auth for CI/CD — gating breaks automation
Custom providers (any count)The entire value prop is connecting your own infra
Drift detectionOperational hygiene — not organizational governance
SSH Certificate AuthorityOperational security feature
Trust domains / Workload identity (OIDC)CI/CD auth — same category as API keys
TOTP (2FA key management)Security, not governance
WebhooksOperational event notifications
Secure SharesDeveloper utility
MCP AI integrationDeveloper tooling
CLI, all SDKsFundamental developer workflow
.NET Aspire integrationDeveloper workflow
Notifications (Slack, Discord, Teams, Telegram)Operational alerting
Security Intelligence scansSecurity hygiene is a basic right
Audit log viewer (in WebApp)Read-only UI access to your own access log

Test: "Would a solo developer or 3-person startup hit this while doing legitimate work?" → If yes, it must be free.

🔒 Enterprise Only

FeatureRationaleStatus
SSO (SAML / OIDC login)Pure organizational feature — only relevant when IT centrally manages logins. Individuals use username+password or social login.Partially implemented (SSO hint flow + SuperAdmin approval)
Audit log streaming / SIEM exportCompliance requirement at company scale (SOC2, ISO27001). The in-app audit log viewer stays free. Streaming to Splunk/Datadog/Azure Monitor is enterprise.Not yet built
Advanced RBACFine-grained permission control beyond Owner/Manager/Member/Consumer. Only needed at large-team governance scale.Not yet implemented
Multi-tenant (multiple orgs on one instance)Relevant when running Bella as an internal platform for multiple business units. The multi-tenant architecture is built; the gating is not.Architecture built, gating pending

❌ Will NOT Be Gated

FeatureReason
Project countThis is the Infisical mistake — repeating it would betray the reason Bella Baxter was built
Environment countSame
Provider countForces Bella onto our infra; destroys the value proposition
API key countBreaks CI/CD for community users
Drift detectionPunishes good practices
Security scansDetecting weak passwords is a basic security right

License Key Architecture (Planned)

A license key is a JWT RS256 token containing the edition and feature list:

json
{
  "edition": "Enterprise",
  "exp": 1800000000,
  "features": ["Sso", "AuditLogStreaming", "MultiTenant"],
  "issuedTo": "Acme Corp",
  "maxTenants": -1
}

Verified offline using a Cosmic Chimps public key embedded in the binary — no internet required. Air-gapped deployments are supported.

Expired key → graceful degradation to Community edition (never a hard crash, never data loss).

Getting Enterprise

Contact us: enterprise@cosmic-chimps.io

Enterprise includes:

  • License key for SSO + audit streaming + advanced RBAC
  • SLA with defined response times
  • Dedicated support channel
  • Custom volume pricing for the managed cloud

Self-Hosted Enterprise vs Cloud Enterprise

Self-Hosted EnterpriseCloud Enterprise
LicenseAnnual license keyIncluded
InfrastructureYour own serversManaged by Cosmic Chimps
Air-gapped✅ Yes❌ No
SupportSLA via ticketSLA via ticket + dedicated channel

Released under the ELv2 License.