Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 755 Bytes

File metadata and controls

19 lines (18 loc) · 755 Bytes
kind: source
# Common source-plugin configuration
spec:
  name: airtable
  registry: docker
  path: docker.cloudquery.io/cloudquery/source-airtable:VERSION_SOURCE_AIRTABLE
  tables: ["*"]
  destinations: ["DESTINATION_NAME"]
  # airtable-specific configuration
  spec:
    access_token: "${AIRTABLE_ACCESS_TOKEN}" # required
    # endpoint_url: "https://api.airtable.com" # Optional, defaults to `https://api.airtable.com`
    # concurrency: 10000 # Optional, defaults to `10000`

:::callout{type="info"} This example uses environment variable expansion to read the token from an AIRTABLE_ACCESS_TOKEN environment variable. You can also hardcode the value in the configuration file, but this is not advised for production settings. :::