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}"
}