We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59efa4a commit e747aadCopy full SHA for e747aad
docs/admin/git-providers.md
@@ -41,6 +41,20 @@ CODER_GITAUTH_0_AUTH_URL="https://github.example.com/login/oauth/authorize"
41
CODER_GITAUTH_0_TOKEN_URL="https://github.example.com/login/oauth/access_token"
42
```
43
44
+### Azure DevOps
45
+
46
+Azure DevOps requires the following environment variables:
47
48
+```console
49
+CODER_GITAUTH_0_ID="primary-azure-devops"
50
+CODER_GITAUTH_0_TYPE=azure-devops
51
+CODER_GITAUTH_0_CLIENT_ID=xxxxxx
52
+# Ensure this value is your "Client Secret", not "App Secret"
53
+CODER_GITAUTH_0_CLIENT_SECRET=xxxxxxx
54
+CODER_GITAUTH_0_AUTH_URL="https://app.vssps.visualstudio.com/oauth2/authorize"
55
+CODER_GITAUTH_0_TOKEN_URL="https://app.vssps.visualstudio.com/oauth2/token"
56
+```
57
58
### Self-managed git providers
59
60
Custom authentication and token URLs should be
0 commit comments