Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.52 KB

File metadata and controls

57 lines (42 loc) · 1.52 KB
page_title subcategory description
airbyte_declarative_source_definition Resource - terraform-provider-airbyte
DeclarativeSourceDefinition Resource

airbyte_declarative_source_definition (Resource)

DeclarativeSourceDefinition Resource

Example Usage

resource "airbyte_declarative_source_definition" "my_declarativesourcedefinition" {
  manifest     = "{ \"see\": \"documentation\" }"
  name         = "...my_name..."
  workspace_id = "e5279006-d3bf-4277-ada7-423cb18aaece"
}

Schema

Required

  • manifest (String) Low code CDK manifest JSON object. Parsed as JSON.
  • name (String) Requires replacement if changed.
  • workspace_id (String)

Read-Only

  • id (String) The ID of this resource.
  • version (Number)

Import

Import is supported using the following syntax:

In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:

import {
  to = airbyte_declarative_source_definition.my_airbyte_declarative_source_definition
  id = jsonencode({
    id = "..."
    workspace_id = "..."
  })
}

The terraform import command can be used, for example:

terraform import airbyte_declarative_source_definition.my_airbyte_declarative_source_definition '{"id": "...", "workspace_id": "..."}'