snyk-broker 4.184.0 → 4.185.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,45 @@
1
+ BROKER_DOWNSTREAM_TYPE_BITBUCKET_SERVER_BEARER_AUTH=true
2
+ # your unique broker identifier
3
+ BROKER_TOKEN=<broker-token>
4
+
5
+ # your personal password to your bitbucket server account
6
+ BITBUCKET_PAT=<bitbucket-pat>
7
+
8
+ # the host where your Bitbucket Server is running, excluding scheme.
9
+ # for bitbucket.yourdomain.com
10
+ # this should be "bitbucket.yourdomain.com"
11
+ BITBUCKET=bitbucket.yourdomain.com
12
+
13
+ # the url that the Bitbucket server API should be accessed at.
14
+ # for bitbucket.yourdomain.com this should be
15
+ # changed to "bitbucket.yourdomain.com/rest/api/1.0"
16
+ BITBUCKET_API=$BITBUCKET/rest/api/1.0
17
+
18
+ # the url of your broker client (including scheme and port)
19
+ # BROKER_CLIENT_URL=
20
+
21
+ # Bitbucket server validation url, checked by broker client systemcheck endpoint
22
+ BROKER_CLIENT_VALIDATION_URL=https://$BITBUCKET/rest/api/1.0/projects
23
+
24
+ # Bitbucket server bearer auth creds
25
+ BROKER_CLIENT_VALIDATION_AUTHORIZATION_HEADER="Bearer $BITBUCKET_SERVER_PAT",
26
+
27
+ # The URL of the Snyk broker server
28
+ BROKER_SERVER_URL=https://broker.snyk.io
29
+
30
+ # the fine detail accept rules that allow Snyk to make API requests to your
31
+ # bitbucket server instance
32
+ ACCEPT=accept.json
33
+
34
+ # The path for the broker's internal healthcheck URL. Must start with a '/'.
35
+ BROKER_HEALTHCHECK_PATH=/healthcheck
36
+
37
+ # the host where the git server resides
38
+ GIT_URL=$BITBUCKET
39
+
40
+ # git credentials for cloning repos
41
+ GIT_USERNAME="x-access-token"
42
+ GIT_PASSWORD=$BITBUCKET_PAT
43
+
44
+ # the url of your snyk git client (including scheme and port).
45
+ # GIT_CLIENT_URL=https://<snyk-git-client-host>:<snyk-git-client-port>