Skip to content

Latest commit

 

History

History
62 lines (45 loc) · 1.6 KB

source_datascope.md

File metadata and controls

62 lines (45 loc) · 1.6 KB
page_title subcategory description
airbyte_source_datascope Resource - terraform-provider-airbyte
SourceDatascope Resource

airbyte_source_datascope (Resource)

SourceDatascope Resource

Example Usage

resource "airbyte_source_datascope" "my_source_datascope" {
  configuration = {
    api_key    = "...my_api_key..."
    start_date = "dd/mm/YYYY HH:MM"
  }
  definition_id = "200f9c0e-d455-4199-96c3-9b473f66c92f"
  name          = "...my_name..."
  secret_id     = "...my_secret_id..."
  workspace_id  = "2292273e-92fb-4a2a-9d00-148222335f72"
}

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_key (String, Sensitive) API Key
  • start_date (String) Start date for the data to be replicated

Import

Import is supported using the following syntax:

terraform import airbyte_source_datascope.my_airbyte_source_datascope ""