diff options
| author | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-12 03:09:13 +0000 |
|---|---|---|
| committer | GitLab Bot <gitlab-bot@gitlab.com> | 2021-04-12 03:09:13 +0000 |
| commit | 08c975cb5d563f887d55e2fda91ec7803ae6fc4f (patch) | |
| tree | 32119824169928a64f3119a7d1375e7d5286a0fc /app/validators/json_schemas | |
| parent | 2aa98751c91f4d34feeb8be65d3c35e90f000882 (diff) | |
| download | gitlab-ce-08c975cb5d563f887d55e2fda91ec7803ae6fc4f.tar.gz | |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/validators/json_schemas')
| -rw-r--r-- | app/validators/json_schemas/security_ci_configuration_schemas/sast_ui_schema.json | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/app/validators/json_schemas/security_ci_configuration_schemas/sast_ui_schema.json b/app/validators/json_schemas/security_ci_configuration_schemas/sast_ui_schema.json index 99961d7264b..dc4880946b2 100644 --- a/app/validators/json_schemas/security_ci_configuration_schemas/sast_ui_schema.json +++ b/app/validators/json_schemas/security_ci_configuration_schemas/sast_ui_schema.json @@ -51,36 +51,36 @@ ], "analyzers": [ { - "name": "brakeman", - "label": "Brakeman", + "name": "bandit", + "label": "Bandit", "enabled" : true, - "description": "Ruby on Rails", + "description": "Python", "variables": [ { - "field" : "SAST_BRAKEMAN_LEVEL", - "label" : "Brakeman confidence level.", + "field" : "SAST_BANDIT_EXCLUDED_PATHS", + "label" : "Paths to exclude from scan", "type": "string", - "default_value": "1", + "default_value": "", "value": "", "size": "SMALL", - "description": "Ignore Brakeman vulnerabilities under given confidence level. Integer, 1=Low, 2=Medium, 3=High." + "description": "Comma-separated list of paths to exclude from scan. Uses Python’s 'fnmatch' syntax; For example: '*/tests/*, */venv/*'" } ] }, { - "name": "bandit", - "label": "Bandit", + "name": "brakeman", + "label": "Brakeman", "enabled" : true, - "description": "Python", + "description": "Ruby on Rails", "variables": [ { - "field" : "SAST_BANDIT_EXCLUDED_PATHS", - "label" : "Paths to exclude from scan.", + "field" : "SAST_BRAKEMAN_LEVEL", + "label" : "Brakeman confidence level", "type": "string", - "default_value": "", + "default_value": "1", "value": "", "size": "SMALL", - "description": "Comma-separated list of paths to exclude from scan. Uses Python’s 'fnmatch' syntax; For example: '*/tests/*, */venv/*'" + "description": "Ignore Brakeman vulnerabilities under given confidence level. Integer, 1=Low, 2=Medium, 3=High." } ] }, @@ -110,7 +110,7 @@ }, { "name": "kubesec", - "label": "kubesec", + "label": "Kubesec", "enabled" : true, "description": "Kubernetes manifests, Helm Charts", "variables": [] @@ -124,7 +124,7 @@ }, { "name": "gosec", - "label": "Golang Security Checker", + "label": "Gosec", "enabled" : true, "description": "Go", "variables": [ |
