Skip to content

Latest commit

 

History

History
106 lines (73 loc) · 3.81 KB

destination_firestore.md

File metadata and controls

106 lines (73 loc) · 3.81 KB
page_title subcategory description
airbyte_destination_firestore Resource - terraform-provider-airbyte
DestinationFirestore Resource

airbyte_destination_firestore (Resource)

DestinationFirestore Resource

Example Usage

resource "airbyte_destination_firestore" "my_destination_firestore" {
  configuration = {
    credentials_json = "...my_credentials_json..."
    project_id       = "...my_project_id..."
  }
  definition_id = "8a7f4b51-c84b-4fb3-b2d3-f23e10cb143f"
  name          = "...my_name..."
  workspace_id  = "9839a229-aa78-46ab-be29-301131283087"
}

Schema

Required

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

Optional

  • definition_id (String) The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.

Read-Only

  • created_at (Number)
  • destination_id (String)
  • destination_type (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)

Nested Schema for configuration

Required:

  • project_id (String) The GCP project ID for the project containing the target BigQuery dataset.

Optional:

  • credentials_json (String, Sensitive) The contents of the JSON service account key. Check out the docs if you need help generating this key. Default credentials will be used if this field is left empty.

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. must be one of ["get_spec", "check_connection", "discover_schema", "sync", "reset_connection", "connection_updater", "replicate"]
  • 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)

Import

Import is supported using the following syntax:

terraform import airbyte_destination_firestore.my_airbyte_destination_firestore ""