We use tracking cookies to understand how you use the product and help us improve it. Please accept cookies to help us improve. You can always opt out later via the link in the footer.
github.com/andygrunwald/go-jira
library.kind: source
spec:
name: "jira"
path: "cloudquery/jira"
registry: cloudquery
version: "v3.3.0"
destinations: ["postgresql"]
backend_options:
table_name: "cq_state_jira"
connection: "@@plugins.postgresql.connection"
tables: ["*"]
# Learn more about the configuration options at https://cql.ink/jira_source
spec:
auth_method: api_key
# Note that [email protected] here is the email address for the Atlassian account you're using to create the token
username: "[email protected]"
api_key: ${JIRA_API_KEY}
base_url: "https://mycompany.atlassian.net"
# Optional table options
table_options:
jira_issues:
jql: 'status = "In Progress"'
base_url
(string
) (required)https://your_account_name.atlassian.net/
auth_method
(string
) (optional, default: api_key
)api_key
and bearer_token
. If the api_key
method is selected, the following additional configuration parameters will be used. If the bearer_token
method is selected, the following additional configuration parameters will be used.concurrency
(integer
, optional, default: 10000
):
A best effort maximum number of Go routines to use. Lower this number to reduce memory usage.scheduler
(string
, optional, default: dfs
):
The scheduler to use when determining the priority of resources to sync.
Supported values are dfs
(depth-first search), round-robin
, shuffle
and shuffle-queue
.table_options
(Table Options spec) (optional)username
(string
) (required)api_key
(string
) (required)bearer_token
(string
) (required)jira_issues
jql
(string
Jira Query Language (JQL) string to filter issues) (optional)status = "In Progress"
.kind: source
spec:
name: jira
path: cloudquery/jira
registry: cloudquery
version: "v3.3.0-fips"
...