Skip to content

Soup Cloud

Soup Cloud is the managed version of Soup, hosted at app.getsoup.dev.

FeatureSelf-HostedCloud
SetupYou manageWe manage
BackupsYou handleAutomatic
UpdatesManualAutomatic
TeamsSingle userMulti-user
Audit logsBasicFull history
SSO/SAMLNoYes (Enterprise)
SupportCommunityEmail/Priority

Soup Cloud includes all modules under one subscription:

  • Secrets - Environment variables with inheritance
  • Feature Flags - Rollouts and targeting (coming soon)
  • Forms - Submissions and webhooks (coming soon)
  • Cron Jobs - Scheduled tasks (coming soon)
  • API Keys - Key management and rate limiting (coming soon)
  • Usage Billing - Metered pricing engine (coming soon)
  • Analytics - Privacy-friendly tracking (coming soon)
  • Session Replay - User recordings (coming soon)

Invite team members to your organization. Control who can:

  • View secrets and configuration
  • Edit secrets and settings
  • Manage team members
  • Delete projects

Create organizations for your company or team:

  • Personal org: Created automatically, just for you
  • Team orgs: Invite colleagues, manage access

Every action is logged:

  • Who accessed which secret
  • When secrets were changed
  • What the previous value was

View logs in the dashboard or export for compliance.

  • 99.9% uptime SLA (Enterprise)
  • Automatic backups every hour
  • Multi-region deployment
  • Encryption at rest and in transit
  1. Sign up at app.getsoup.dev
  2. Create an organization (or use your personal org)
  3. Create a project for your application
  4. Enable modules you need
  5. Add secrets/flags/etc via UI or CLI
  6. Invite team members if needed

The CLI works with Soup Cloud out of the box:

Terminal window
# Login (opens browser)
soup login
# You're now connected to Soup Cloud
soup secrets project list
soup flags list
  • All secrets encrypted with AES-256-GCM
  • TLS 1.3 for all connections
  • SOC 2 Type II compliant (Enterprise)
  • GDPR compliant
  • No Soup employee can access your secrets

Export from self-hosted:

Terminal window
soup secrets export my-app production --format json > secrets.json

Import to Cloud:

Terminal window
soup login # Login to Cloud
soup secrets import my-app production --file secrets.json