Skip to content
This repository was archived by the owner on Aug 18, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion admin/git.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ response received** error, click **Continue** to ignore it.
For your newly created Application Link, provide the following values as your
**Incoming Authentication** properties:

- **Consumer Key**: `Coder`
- **Consumer Key**: `Coder` (or the value of `CODERD_BITBUCKET_CONSUMER_KEY`)
- **Consumer Name**: `Coder`
- **Public Key**: Your public key (available from the Coder Admin Configuration
page)
Expand All @@ -109,3 +109,19 @@ Then, in Coder, provide a **Name** for your app, your **URL**, and, optionally,
a **Description**.

When done, click **Save**.

> 💡 By default, Coder sets the Bitbucket Consumer Key to `Coder`. This can
> cause issues when attempting to link multiple Coder instances to a single
> Bitbucket server. In this case, you can override the Bitbucket Consumer Key by
> setting the environment variable `CODERD_BITBUCKET_CONSUMER_KEY` to a unique
> value for each Coder deployment. Here's an example of how to set this in your
> Helm values:
>
> ```yaml
> coderd:
> [...]
> extraEnvs:
> [...]
> - name: CODERD_BITBUCKET_CONSUMER_KEY
> value: XXX
> ```