Back to plugin list
Official
Premium
LaunchDarkly
The CloudQuery LaunchDarkly plugin pulls data from LaunchDarkly and loads it into any supported CloudQuery destination
Publisher
cloudquery
Latest version
v3.8.4
Type
Source
Platforms
Date Published
Price per 1M rows
Starting from $15
monthly free quota
1M rows
Set up process #
brew install cloudquery/tap/cloudquery
1. Download CLI and login
2. Create source and destination configs
Plugin configurationOverview #
The CloudQuery LaunchDarkly plugin pulls data from LaunchDarkly and loads it into any supported CloudQuery destination.
Authentication #
In order to fetch information from LaunchDarkly,
cloudquery
needs to be authenticated using an Access Token from your LaunchDarkly account. You can view and manage your access tokens in LaunchDarkly Account settings > Authorization
. Refer to REST API Authentication for more information.Access Token API Version #
Creating the access token you should select at least
20220603
as the API version. This is the minimum API version supported by the LaunchDarkly plugin. Refer to API version changelog for more information.Example Configuration #
kind: source
# Common source-plugin configuration
spec:
name: launchdarkly
path: cloudquery/launchdarkly
registry: cloudquery
version: "v3.8.4"
tables: ["*"]
destinations: ["postgresql"]
backend_options:
table_name: "cq_state_launchdarkly"
connection: "@@plugins.postgresql.connection"
# LaunchDarkly specific configuration
spec:
# required
access_token: "${LAUNCHDARKLY_ACCESS_TOKEN}"
Configuration Reference #
This is the (nested) spec used by the LaunchDarkly source plugin:
access_token
(string
) (required)Your access token from LaunchDarkly.timeout
(duration
) (optional) (default:30s
(30 seconds))Timeout for requests against the LaunchDarkly API.