Skip to main content
Skip table of contents

Connectors

Configuration constants

Connectors configuration can refer to two types of constants:

  • Text constants, which store clear text value.

  • Secret constants, which value can not be retrieved after being set.

Constants are referenced within configurations through the syntax ${Constant_name}.

JSON
{
  "jiraUrl": "${JIRA_URL}",
  "jiraApiVersion": 3,
  "jiraAuth": {
    "type": "Basic",
    "userId": "${JIRA_USER}",
    "password": "${JIRA_TOKEN}"
  },
  "webhookSecret": "${JIRA_WEBHOOK_SECRET}"
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.