Gitlab Topvaz [work] May 2026
1. Top-level variables (The "Global Vault") Define variables at the root of .gitlab-ci.yml . These apply to all jobs unless overridden.
If "TopVaz" meant something else (e.g., a tool or internal term), let me know and I'll refine the guide! gitlab topvaz
variables: LOG_LEVEL: "info" RETRIES: 2 .test_template: script: - echo "Log level: $LOG_LEVEL" If "TopVaz" meant something else (e
debug: script: env | sort | Want to... | Do this | |-------------------------------------|----------------------------------------------| | Set a default for all jobs | variables: at top of .gitlab-ci.yml | | Override for one job | variables: inside the job | | Pass a computed value between jobs | dotenv artifact | | Hide a secret | UI project/group variable + masked: true | | Limit a var to protected branches | UI variable + protected: true | If "TopVaz" meant something else (e.g.