Path: blob/dev/integration_tests/test-issue-tracker-config1.yaml
2061 views
allow-list:1severity: high, critical2deny-list:3severity: low45# GitHub contains configuration options for GitHub issue tracker6github:7# base-url is the optional self-hosted GitHub application url8base-url: https://localhost:8443/github9# username is the username of the GitHub user10username: test-username11# owner is the owner name of the repository for issues12owner: test-owner13# token is the token for GitHub account14token: test-token15# project-name is the name of the repository16project-name: test-project17# issue-label is the label of the created issue type18issue-label: bug1920# GitLab contains configuration options for gitlab issue tracker21gitlab:22# base-url is the optional self-hosted GitLab application url23base-url: https://localhost:8443/gitlab24# username is the username of the GitLab user25username: test-username26# token is the token for GitLab account27token: test-token28# project-name is the name/id of the project(repository)29project-name: "1234"30# issue-label is the label of the created issue type31issue-label: bug3233# Jira contains configuration options for Jira issue tracker34jira:35# cloud is the boolean which tells if Jira instance is running in the cloud or on-prem version is used36cloud: true37# update-existing is the boolean which tells if the existing, opened issue should be updated or new one should be created38update-existing: false39# URL is the jira application url40url: https://localhost/jira41# account-id is the account-id of the Jira user or username in case of on-prem Jira42account-id: test-account-id43# email is the email of the user for Jira instance44email: test@test.com45# token is the token for Jira instance or password in case of on-prem Jira46token: test-token47# project-name is the name of the project.48project-name: test-project-name49# issue-type is the name of the created issue type50issue-type: bug5152# elasticsearch contains configuration options for elasticsearch exporter53elasticsearch:54# IP for elasticsearch instance55ip: 127.0.0.156# Port is the port of elasticsearch instance57port: 920058# IndexName is the name of the elasticsearch index59index-name: nuclei60# SSL enables ssl for elasticsearch connection61ssl: false62# SSLVerification disables SSL verification for elasticsearch63ssl-verification: false64# Username for the elasticsearch instance65username: test66# Password is the password for elasticsearch instance67password: test686970