Skip to content

Latest commit

 

History

History
82 lines (58 loc) · 2.84 KB

File metadata and controls

82 lines (58 loc) · 2.84 KB
page_title subcategory description
airbyte_source Data Source - terraform-provider-airbyte
Source DataSource

airbyte_source (Data Source)

Source DataSource

Example Usage

data "airbyte_source" "my_source" {
  include_secret_coordinates = false
  source_id                  = "...my_source_id..."
}

Schema

Required

  • source_id (String)

Optional

  • include_secret_coordinates (Boolean) Rather than return *** for secret properties include the secret coordinate information

Read-Only

  • configuration (String) The values required to configure the source. The schema for this must match the schema return by source_definition_specifications/get for the source. Parsed as JSON.
  • created_at (Number)
  • definition_id (String)
  • name (String)
  • resource_allocation (Attributes) actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level. (see below for nested schema)
  • source_type (String)
  • workspace_id (String)

Nested Schema for resource_allocation

Read-Only:

Nested Schema for resource_allocation.default

Read-Only:

  • cpu_limit (String)
  • cpu_request (String)
  • ephemeral_storage_limit (String)
  • ephemeral_storage_request (String)
  • memory_limit (String)
  • memory_request (String)

Nested Schema for resource_allocation.job_specific

Read-Only:

  • job_type (String) enum that describes the different types of jobs that the platform runs.
  • resource_requirements (Attributes) optional resource requirements to run workers (blank for unbounded allocations) (see below for nested schema)

Nested Schema for resource_allocation.job_specific.resource_requirements

Read-Only:

  • cpu_limit (String)
  • cpu_request (String)
  • ephemeral_storage_limit (String)
  • ephemeral_storage_request (String)
  • memory_limit (String)
  • memory_request (String)