Skip to content

Latest commit

 

History

History
71 lines (52 loc) · 2.03 KB

source_plaid.md

File metadata and controls

71 lines (52 loc) · 2.03 KB
page_title subcategory description
airbyte_source_plaid Resource - terraform-provider-airbyte
SourcePlaid Resource

airbyte_source_plaid (Resource)

SourcePlaid Resource

Example Usage

resource "airbyte_source_plaid" "my_source_plaid" {
  configuration = {
    access_token = "...my_access_token..."
    api_key      = "...my_api_key..."
    client_id    = "...my_client_id..."
    plaid_env    = "sandbox"
    start_date   = "2022-03-19"
  }
  definition_id = "44b2eab0-7f1c-42f4-907b-f94107b2f6c4"
  name          = "...my_name..."
  secret_id     = "...my_secret_id..."
  workspace_id  = "59a946a0-15f9-4907-92fa-47403fc1e3d9"
}

Schema

Required

  • configuration (Attributes) (see below for nested schema)
  • name (String) Name of the source e.g. dev-mysql-instance.
  • workspace_id (String)

Optional

  • definition_id (String) The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
  • secret_id (String) Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.

Read-Only

  • created_at (Number)
  • source_id (String)
  • source_type (String)

Nested Schema for configuration

Required:

  • access_token (String, Sensitive) The end-user's Link access token.
  • api_key (String, Sensitive) The Plaid API key to use to hit the API.
  • client_id (String) The Plaid client id.
  • plaid_env (String) The Plaid environment. must be one of ["sandbox", "development", "production"]

Optional:

  • start_date (String) The date from which you'd like to replicate data for Plaid in the format YYYY-MM-DD. All data generated after this date will be replicated.

Import

Import is supported using the following syntax:

terraform import airbyte_source_plaid.my_airbyte_source_plaid ""