Masking pre-filled variables in .gitlab-ci.yml
<!--IssueSummary start--> <details> <summary> Everyone can contribute. [Help move this issue forward](https://handbook.gitlab.com/handbook/marketing/developer-relations/contributor-success/community-contributors-workflows/#contributor-links) while earning points, leveling up and collecting rewards. </summary> - [Close this issue](https://contributors.gitlab.com/manage-issue?action=close&projectId=278964&issueIid=347519) </details> <!--IssueSummary end--> I am currently implementing a gitlab ci configuration using the pre-filled variables introduced in [issue 30101](https://gitlab.com/gitlab-org/gitlab/-/issues/30101/). Some of these variables I would like to declare masked to prevent leaks of secrets as I intend to use these for access token and similar things, that should not be directly visible in the pipeline logs and probably also not necessarily in the input mask. Example: ``` --- variables: AZURE_TOKEN: value: "this-is-not-a-valid-token" description: "Please provide an access token to the azure cloud you want to get this file uploaded to." masked: true ``` The `masked: true` part seems to not be implemented yet, or at least I wasn't able to find that in the issue description. I didn't do too much of a deep dive into the actual code changes.
issue