Skip to content

Latest commit

 

History

History
67 lines (48 loc) · 1.7 KB

source_dixa.md

File metadata and controls

67 lines (48 loc) · 1.7 KB
page_title subcategory description
airbyte_source_dixa Resource - terraform-provider-airbyte
SourceDixa Resource

airbyte_source_dixa (Resource)

SourceDixa Resource

Example Usage

resource "airbyte_source_dixa" "my_source_dixa" {
  configuration = {
    api_token  = "...my_api_token..."
    batch_size = 1
    start_date = "YYYY-MM-DD"
  }
  definition_id = "c89cdab2-ae44-4bc0-a6fa-3a4b7fe80911"
  name          = "...my_name..."
  secret_id     = "...my_secret_id..."
  workspace_id  = "2e314291-ef9d-4ed9-95b7-aa2210b0220e"
}

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:

  • api_token (String, Sensitive) Dixa API token
  • start_date (String) The connector pulls records updated from this date onwards.

Optional:

  • batch_size (Number) Number of days to batch into one request. Max 31. Default: 31

Import

Import is supported using the following syntax:

terraform import airbyte_source_dixa.my_airbyte_source_dixa ""