mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
- [x] Mention Orgs is beta and add a link to get feedback - [x] Add docs on new provisioner authentication architecture and deprecate the old one - [x] Add/update docs for IdP sync - [x] Organization Sync - [x] Group Sync - [x] Role Sync - [x] Modify `coder.com` codebase to add `Premium` and `Beta` pill, and allow multiple pills: https://github.com/coder/coder.com/pull/638 - [x] Replace all mentions of "Enterprise" with "Premium" in docs - [x] edit: change it to "Licensing" - [x] Remove the enterprise page and change all links to coder.com/pricing - [x] Merge #14786 - [x] Add redirects for coder.com to redirect the `using-organizations` guide to the new orgs one and /enterprise to /premium https://github.com/coder/coder.com/pull/645 - [x] Custom roles - [x] https://github.com/coder/coder/pull/14786 - [x] Remove all mentions of orgs experiment - [x] Update in-product copy & links to link to the new docs pages Anything I am missing? --- [Preview this](https://coder.com/docs/@orgs-licenses/admin/organizations) --------- Co-authored-by: Edward Angert <EdwardAngert@users.noreply.github.com> Co-authored-by: EdwardAngert <17991901+EdwardAngert@users.noreply.github.com> Co-authored-by: Jaayden Halko <jaayden.halko@gmail.com>
48 lines
1.3 KiB
Markdown
48 lines
1.3 KiB
Markdown
# Licensing
|
|
|
|
Some features are only accessible with a Premium or Enterprise license. See our
|
|
[pricing page](https://coder.com/pricing) for more details. To try Premium
|
|
features, you can [request a trial](https://coder.com/trial) or
|
|
[contact sales](https://coder.com/contact).
|
|
|
|
<!-- markdown-link-check-disable -->
|
|
|
|
> If you are an existing customer, you can learn more our new Premium plan in
|
|
> the [Coder v2.16 blog post](https://coder.com/blog/release-recap-2-16-0)
|
|
|
|
<!-- markdown-link-check-enable -->
|
|
|
|
## Adding your license key
|
|
|
|
There are two ways to add a license to a Coder deployment:
|
|
|
|
<div class="tabs">
|
|
|
|
### Coder UI
|
|
|
|
First, ensure you have a license key
|
|
([request a trial](https://coder.com/trial)).
|
|
|
|
With an `Owner` account, navigate to `Deployment -> Licenses`, `Add a license`
|
|
then drag or select the license file with the `jwt` extension.
|
|
|
|

|
|
|
|
### Coder CLI
|
|
|
|
First, ensure you have a license key
|
|
([request a trial](https://coder.com/trial)) and the
|
|
[Coder CLI](./install/index.md) installed.
|
|
|
|
1. Save your license key to disk and make note of the path
|
|
2. Open a terminal
|
|
3. Ensure you are logged into your Coder deployment
|
|
|
|
`coder login <access url>`
|
|
|
|
4. Run
|
|
|
|
`coder licenses add -f <path to your license key>`
|
|
|
|
</div>
|