GitLab - environment variables for Snyk Broker
The following environment variables are required to configure the Broker Client for GitLab:
BROKER_TOKEN
- the Snyk Broker token, obtained from your GitLab integration settings view (app.snyk.io).GITLAB_TOKEN
- a GitLab personal access token withapi
scopeGITLAB
- the hostname of your GitLab deployment, such asyour.gitlab.domain.com
orGitLab.com
.PORT
- the local port at which the Broker Client accepts connections. Default is 8000.BROKER_CLIENT_URL
- the full URL of the Broker Client as needed to be reachable by either GitLab.com or on-prem GitLab deployment in order to establish webhook connectivity. This must be a full URL likehttp://broker.url.example:8000
This must have http:// and the port number.
To configure the client with HTTPS, additional settings are required.
ACCEPT_IAC
- by default, some file types used by Infrastructure-as-Code (IaC) are not enabled. To grant the Broker access to IaC files in your repository, such as Terraform for example, you can simply add an environment variableACCEPT_IAC
with any combination oftf,yaml,yml,json,tpl
ACCEPT_CODE
- by default, Snyk Code will not load code snippets. To enable code snippets you can simply add an environment variableACCEPT_CODE=true
ACCEPT_APPRISK
- Enable Snyk AppRisk to identify your application assets, monitor them, and prioritize the risks. You can enable it by adding an environment variableACCEPT_APPRISK=true
.
Last updated