| page_title | subcategory | description |
|---|---|---|
airbyte_declarative_source_definition Resource - terraform-provider-airbyte |
DeclarativeSourceDefinition Resource |
DeclarativeSourceDefinition Resource
resource "airbyte_declarative_source_definition" "my_declarativesourcedefinition" {
manifest = "{ \"see\": \"documentation\" }"
name = "...my_name..."
workspace_id = "e5279006-d3bf-4277-ada7-423cb18aaece"
}manifest(String) Low code CDK manifest JSON object. Parsed as JSON.name(String) Requires replacement if changed.workspace_id(String)
id(String) The ID of this resource.version(Number)
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": "..."}'