Add information about expose of build variables.
This commit is contained in:
parent
4558bb1f4a
commit
078ec5e414
2 changed files with 7 additions and 2 deletions
|
@ -3,9 +3,11 @@
|
||||||
Secret Variables
|
Secret Variables
|
||||||
|
|
||||||
%p.light
|
%p.light
|
||||||
These variables will be set to environment by the runner and will be hidden in the build log.
|
These variables will be set to environment by the runner.
|
||||||
%br
|
%br
|
||||||
So you can use them for passwords, secret keys or whatever you want.
|
So you can use them for passwords, secret keys or whatever you want.
|
||||||
|
%br
|
||||||
|
The value of the variable can be visible in build log if explicitly asked to do so.
|
||||||
|
|
||||||
%hr
|
%hr
|
||||||
|
|
||||||
|
|
|
@ -77,9 +77,12 @@ More information about Docker integration can be found in [Using Docker Images](
|
||||||
|
|
||||||
GitLab CI allows you to define per-project **Secure Variables** that are set in build environment.
|
GitLab CI allows you to define per-project **Secure Variables** that are set in build environment.
|
||||||
The secure variables are stored out of the repository (the `.gitlab-ci.yml`).
|
The secure variables are stored out of the repository (the `.gitlab-ci.yml`).
|
||||||
These variables are securely stored in GitLab CI database and are hidden in the build log.
|
The variables are securely passed to GitLab Runner and are available in build environment.
|
||||||
It's desired method to use them for storing passwords, secret keys or whatever you want.
|
It's desired method to use them for storing passwords, secret keys or whatever you want.
|
||||||
|
|
||||||
|
**The value of the variable can be shown in build log if explicitly asked to do so.**
|
||||||
|
If your project is public or internal you can make the builds private.
|
||||||
|
|
||||||
Secure Variables can added by going to `Project > Variables > Add Variable`.
|
Secure Variables can added by going to `Project > Variables > Add Variable`.
|
||||||
|
|
||||||
They will be available for all subsequent builds.
|
They will be available for all subsequent builds.
|
||||||
|
|
Loading…
Reference in a new issue