Path: blob/dev/integration_tests/test-issue-tracker-config2.yaml
2061 views
allow-list:1severity:2- high3- critical4deny-list:5severity: low67# GitHub contains configuration options for GitHub issue tracker8gitHub:9# base-url is the optional self-hosted GitHub application url10base-url: https://localhost:8443/GitHub11# username is the username of the GitHub user12username: test-username13# owner is the owner name of the repository for issues.14owner: test-owner15# token is the token for GitHub account.16token: test-token17# project-name is the name of the repository.18project-name: test-project19# issue-label is the label of the created issue type20issue-label: bug2122# GitLab contains configuration options for GitLab issue tracker23gitLab:24# base-url is the optional self-hosted GitLab application url25base-url: https://localhost:8443/GitLab26# username is the username of the GitLab user27username: test-username28# token is the token for GitLab account.29token: test-token30# project-name is the name/id of the project(repository).31project-name: "1234"32# issue-label is the label of the created issue type33issue-label: bug34# duplicate-issue-check flag to enable duplicate tracking issue check.35duplicate-issue-check: true3637# Jira contains configuration options for Jira issue tracker38jira:39# cloud is the boolean which tells if Jira instance is running in the cloud or on-prem version is used40cloud: true41# update-existing is the boolean which tells if the existing, opened issue should be updated or new one should be created42update-existing: false43# URL is the Jira application url44url: https://localhost/Jira45# account-id is the account-id of the Jira user or username in case of on-prem Jira46account-id: test-account-id47# email is the email of the user for Jira instance48email: test@test.com49# token is the token for Jira instance or password in case of on-prem Jira50token: test-token51# project-name is the name of the project.52project-name: test-project-name53# issue-type is the name of the created issue type54issue-type: bug5556# elasticsearch contains configuration options for elasticsearch exporter57elasticsearch:58# IP for elasticsearch instance59ip: 127.0.0.160# Port is the port of elasticsearch instance61port: 920062# IndexName is the name of the elasticsearch index63index-name: nuclei64# SSL enables ssl for elasticsearch connection65ssl: false66# SSLVerification disables SSL verification for elasticsearch67ssl-verification: false68# Username for the elasticsearch instance69username: test70# Password is the password for elasticsearch instance71password: test7273