7.3 KiB
Preset Catalog
Complete catalog of all seeder presets, organized by purpose. Use --mangle to avoid collisions with existing data.
Cipher generation knobs
These options apply to any preset that uses generated (count-based) ciphers — QA, Scale, and Individual alike. Add them to the "ciphers" or "personalCiphers" block in the preset JSON. Schema reference: Seeds/schemas/preset.schema.json.
| Knob | Type | Default | Description |
|---|---|---|---|
repromptEveryNthCipher |
integer | 0 | Set Reprompt=Password on every Nth generated cipher. 0 = disabled. Example: 5 flags ciphers at indices 0, 5, 10, … ≈ 20% reprompt rate. |
Features
Test specific Bitwarden features. Fixture-based data for deterministic results.
dotnet run -- preset --name features.{name} --mangle
| Preset | Features Enabled | Org Fixture | Roster | Ciphers |
|---|---|---|---|---|
| sso-enterprise | SSO (OIDC, masterPassword) + requireSso policy | verdant-health | starter-team | sso-vault |
| tde-enterprise | SSO (OIDC, trustedDevices/TDE) + requireSso policy | obsidian-labs | starter-team | tde-vault |
| policy-enterprise | All policies except requireSso and require2fa | pinnacle-designs | starter-team | — |
policy-enterprise has no ciphers — it exists purely for testing policy enforcement.
QA
Known users, groups, collections, and permissions you can point a client to.
dotnet run -- preset --name qa.{name} --mangle
| Preset | Org Fixture | Roster | Ciphers | Use Case |
|---|---|---|---|---|
| enterprise-basic | redwood-analytics | enterprise-basic | enterprise-basic | Standard enterprise org |
| collection-permissions-enterprise | cobalt-logistics | collection-permissions | collection-permissions | Permission edge cases |
| dunder-mifflin-enterprise-full | dunder-mifflin | dunder-mifflin | autofill-testing | Large handcrafted org |
| families-basic | adams-family | family | 150 generated | Families plan with personal vaults + reprompt |
| stark-free-basic | stark-industries | 1 generated user | autofill-testing | Free plan personal vault |
| zero-knowledge-labs-enterprise | zero-knowledge-labs | zero-knowledge-labs | zero-knowledge-labs | Full ZKL org with named folders + favorites |
families-basic and stark-free-basic mix fixtures with generated data (ciphers and personal ciphers).
zero-knowledge-labs-enterprise uses all three assignment types: collectionAssignments (ciphers to department collections), folderAssignments (per-user folder organization), and favoriteAssignments (per-user favorites).
Scale
Production-calibrated presets with density modeling. Realistic relationship patterns (group membership, collection fan-out, permission distribution, cipher assignment) across 5 tiers.
dotnet run -- preset --name scale.{name} --mangle
| Preset | Tier | Archetype | Users | Groups | Collections | Ciphers |
|---|---|---|---|---|---|---|
| xs-central-perk | XS | Family starter | 6 | 2 | 10 | 200 |
| sm-balanced-planet-express | SM | Small balanced | 50 | 8 | 100 | 750 |
| sm-highperm-bluth-company | SM | Small hierarchical | 50 | 4 | 25 | 500 |
| md-balanced-sterling-cooper | MD | Mid-market balanced | 250 | 50 | 500 | 5,000 |
| md-highcollection-umbrella-corp | MD | Collection-heavy | 200 | 8 | 800 | 3,000 |
| lg-balanced-wayne-enterprises | LG | Large balanced | 1,000 | 100 | 2,000 | 10,000 |
| lg-highperm-tyrell-corp | LG | High permission density | 2,500 | 75 | 2,300 | 17,000 |
| xl-highperm-weyland-yutani | XL | Mega corp, many groups | 5,000 | 500 | 1,200 | 15,000 |
| xl-broad-initech | XL | Mega corp, many collections | 10,000 | 5 | 12,000 | 15,000 |
Notes:
- The XS preset uses
families-annually, which hides the Groups UI even though the seeder creates groups. - Cipher types: Most use
realistic(60% Login, 15% SecureNote, 12% Card, 10% Identity, 3% SSHKey). Umbrella Corp usesdocumentationHeavy(40/40 Login/SecureNote). Tyrell Corp usesdeveloperFocused(50% Login, 20% SSHKey). - Personal ciphers: Sterling Cooper and Wayne Enterprises use
realisticdistribution. Weyland-Yutani useslightUsage. UseheavyUsageonly for small/mid orgs — at XL scale it produces 300K+ ciphers and will timeout. - Folders: Wayne Enterprises uses
enterprisefolder distribution. Weyland-Yutani usesminimal.
For per-preset expected values and verification queries, see verification.md.
Individual
Individual user accounts with no organization. Useful for testing personal vault features.
dotnet run -- preset --name individual.{name} --mangle
| Preset | Account Type | Folders | Ciphers | Assignments |
|---|---|---|---|---|
| free | Free | — | 0 | — |
| premium | Premium (1GB) | — | 0 | — |
free and premium create accounts with no vault data — useful for testing account setup flows. Cipher count is set to 0 (TBD).
Login emails: free uses freeuser@individual.example; premium uses premuser@individual.example.
Validation
Algorithm verification for seeder development. Not for general use.
dotnet run -- preset --name validation.{name} --mangle
| Preset | Tests |
|---|---|
| density-modeling-power-law-test | PowerLaw group membership, fan-out, permissions, orphans |
| density-modeling-mega-group-test | MegaGroup membership, FrontLoaded fan-out, all-group access |
| density-modeling-empty-groups-test | EmptyGroupRate exclusion from CollectionGroup |
| density-modeling-no-density-test | Backward compatibility (no density block = original behavior) |
For expected values and verification queries, see verification.md.