Newer
Older
"description": "Detect and prevent hardcoded secrets in your Git repository with [Gitleaks](https://github.com/zricethezav/gitleaks/wiki)",
"template_path": "templates/gitlab-ci-gitleaks.yml",
"kind": "analyse",
"variables": [
{
"name": "GITLEAKS_IMAGE",
"description": "The Docker image used to run Gitleaks",
"default": "zricethezav/gitleaks:latest"
},
{
"name": "GITLEAKS_RULES",
"description": "Gitleaks [configuration rules](https://github.com/zricethezav/gitleaks/wiki/Configuration) to use (you may also provide your own `.gitleaks.toml` configuration file in your project).",
"advanced": true
},
{
"name": "GITLEAKS_ARGS",
"description": "[Options](https://github.com/zricethezav/gitleaks/wiki/Options) for a full Gitleaks analysis (on master or develop branches)",
"default": "--verbose",
"advanced": true
},
{
"name": "GITLEAKS_QUICK_ARGS",
"description": "[Options](https://github.com/zricethezav/gitleaks/wiki/Options) for a quick Gitleaks analysis (on feature branches)",
"default": "--verbose",
"advanced": true
},
{
"name": "GITLEAKS_QUICK_DEPTH",
"description": "Number of commits to scan (on feature branches)",
"type": "number",
"default": "10",