The CloudQuery Okta plugin extracts Okta resources configurations and loads them into any supported CloudQuery destination (e.g. PostgreSQL, BigQuery, Snowflake, and more).
To authenticate CloudQuery with your Okta account you need to add Okta API token to the configuration.
In order to get started with the Okta plugin, you need to create a YAML file in your CloudQuery configuration directory (e.g. named okta.yml).
The following example sets up the Okta plugin, and connects it to a postgresql destination:
kind: source
spec:
# Source spec section
name: okta
path: cloudquery/okta
version: "v1.2.0" # latest version of okta plugin
tables: ["*"]
destinations: ["postgresql"]
spec:
# Required. Your Okta domain name
domain: "https://<YOUR_OKTA_DOMAIN>.okta.com/"
# Optional. Okta Token to access API
token: "<YOUR_OKTA_TOKEN>"domain(Required) - Specify the Okta domain you are fetching from. Visit this link to find your Okta domaintoken(Required) - Okta Token to access the API.