diff --git a/docs/admin/auth.md b/docs/admin/auth.md index 56a5ae2074ff2..82607d4612cbd 100644 --- a/docs/admin/auth.md +++ b/docs/admin/auth.md @@ -75,11 +75,7 @@ Once complete, run `sudo service coder restart` to reboot Coder. > When a new user is created, the `preferred_username` claim becomes the username. If this claim is empty, the email address will be stripped of the domain, and become the username (e.g. `example@coder.com` becomes `example`). -## SCIM - -
-SCIM is only available in the Enterprise Edition. -
+## SCIM (enterprise) Coder supports user provisioning and deprovisioning via SCIM 2.0 with header authentication. Upon deactivation, users are [suspended](userd.md#suspend-a-user) diff --git a/docs/admin/quotas.md b/docs/admin/quotas.md index e06567fe2b109..75e5442d66bac 100644 --- a/docs/admin/quotas.md +++ b/docs/admin/quotas.md @@ -1,9 +1,5 @@ # Quotas -
-Workspace Quotas are only available in the Enterprise Edition. -
- Coder Enterprise admins may define deployment-level quotas to protect against Denial-of-Service, control costs, and ensure equitable access to cloud resources. diff --git a/docs/manifest.json b/docs/manifest.json index 1bf394735cf45..c909c2d8b3275 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -202,13 +202,15 @@ "title": "Audit Logs", "description": "Learn how to use Audit Logs in your Coder deployment.", "icon_path": "./images/icons/radar.svg", - "path": "./admin/audit-logs.md" + "path": "./admin/audit-logs.md", + "state": "enterprise" }, { "title": "Quotas", "description": "Learn how to use Workspace Quotas in Coder.", "icon_path": "./images/icons/dollar.svg", - "path": "./admin/quotas.md" + "path": "./admin/quotas.md", + "state": "enterprise" }, { "title": "Enterprise", diff --git a/docs/networking.md b/docs/networking.md index f30735a416df6..d2c56f26130a7 100644 --- a/docs/networking.md +++ b/docs/networking.md @@ -88,13 +88,9 @@ The dashboard (and web apps opened through the dashboard) are served from the coder server, so they can only be geo-distributed with High Availability mode in our Enterprise Edition. [Reach out to sales](mailto:sales@coder.com) to learn more. -## Browser-only connections +## Browser-only connections (enterprise) -
-Browser-only connections are available in the Enterprise Edition. -
- -Some Coder deployments must only permit access through the browser to comply +Some Coder deployments require that all access is through the browser to comply with security policies. In these cases, pass the `--browser-only` flag to `coder server` or set `CODER_BROWSER_ONLY=true`.