Jira Source Plugin
Latest: v1.0.7
Open Core
This is an open-core plugin with set of free tables available and full version that you can buy here.
The CloudQuery Jira plugin extracts Jira information and loads it into any supported CloudQuery destination (e.g. PostgreSQL, BigQuery, Snowflake, and more). It is based on the Jira API (opens in a new tab) and the github.com/andygrunwald/go-jira
(opens in a new tab) library.
Authentication
In Order for CloudQuery to sync resources from your Jira setup, you will need to generate Jira API Key (opens in a new tab).
Configuration
The following example sets up the Jira plugin, and connects it to a postgresql destination:
kind: source
spec:
name: "jira"
path: /path/to/downloaded/plugin # Jira is a premium plugin: https://cloudquery.io/buy/jira
registry: local
version: "v1.0.7"
destinations: ["postgresql"]
tables: ["*"]
spec:
base_url: "https://your_uri.atlassian.net"
username: "your_username"
token: ${ENV_WITH_API_KEY}
Jira Spec
This is the specs that can be used by the Jira source Plugin.
-
base_url
(string
, required.)Your Jira base URL. For hosted versions URI is
https://your_account_name.atlassian.net/
-
username
(string
, required.)The username to authenticate with.
-
token
(string
, required.)Personal access to authenticate with (recommendation: Use environment variable instead of hardcoded the token in the config).