1. Packages
  2. Airbyte Provider
  3. API Docs
  4. Destination
Viewing docs for airbyte 1.0.0
published on Wednesday, Mar 4, 2026 by airbytehq
airbyte logo
Viewing docs for airbyte 1.0.0
published on Wednesday, Mar 4, 2026 by airbytehq

    Import

    $ pulumi import airbyte:index/destination:Destination my_airbyte_destination "..."
    

    In Terraform v1.5.0 and later, the import block can be used:

    terraform

    import {

    to = airbyte_destination.my_airbyte_destination

    id = “…”

    }

    Create Destination Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Destination(name: string, args: DestinationArgs, opts?: CustomResourceOptions);
    @overload
    def Destination(resource_name: str,
                    args: DestinationArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def Destination(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    configuration: Optional[str] = None,
                    workspace_id: Optional[str] = None,
                    definition_id: Optional[str] = None,
                    name: Optional[str] = None,
                    resource_allocation: Optional[DestinationResourceAllocationArgs] = None)
    func NewDestination(ctx *Context, name string, args DestinationArgs, opts ...ResourceOption) (*Destination, error)
    public Destination(string name, DestinationArgs args, CustomResourceOptions? opts = null)
    public Destination(String name, DestinationArgs args)
    public Destination(String name, DestinationArgs args, CustomResourceOptions options)
    
    type: airbyte:Destination
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DestinationArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DestinationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var destinationResource = new Airbyte.Destination("destinationResource", new()
    {
        Configuration = "string",
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        ResourceAllocation = new Airbyte.Inputs.DestinationResourceAllocationArgs
        {
            Default = new Airbyte.Inputs.DestinationResourceAllocationDefaultArgs
            {
                CpuLimit = "string",
                CpuRequest = "string",
                EphemeralStorageLimit = "string",
                EphemeralStorageRequest = "string",
                MemoryLimit = "string",
                MemoryRequest = "string",
            },
            JobSpecifics = new[]
            {
                new Airbyte.Inputs.DestinationResourceAllocationJobSpecificArgs
                {
                    JobType = "string",
                    ResourceRequirements = new Airbyte.Inputs.DestinationResourceAllocationJobSpecificResourceRequirementsArgs
                    {
                        CpuLimit = "string",
                        CpuRequest = "string",
                        EphemeralStorageLimit = "string",
                        EphemeralStorageRequest = "string",
                        MemoryLimit = "string",
                        MemoryRequest = "string",
                    },
                },
            },
        },
    });
    
    example, err := airbyte.NewDestination(ctx, "destinationResource", &airbyte.DestinationArgs{
    	Configuration: pulumi.String("string"),
    	WorkspaceId:   pulumi.String("string"),
    	DefinitionId:  pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	ResourceAllocation: &airbyte.DestinationResourceAllocationArgs{
    		Default: &airbyte.DestinationResourceAllocationDefaultArgs{
    			CpuLimit:                pulumi.String("string"),
    			CpuRequest:              pulumi.String("string"),
    			EphemeralStorageLimit:   pulumi.String("string"),
    			EphemeralStorageRequest: pulumi.String("string"),
    			MemoryLimit:             pulumi.String("string"),
    			MemoryRequest:           pulumi.String("string"),
    		},
    		JobSpecifics: airbyte.DestinationResourceAllocationJobSpecificArray{
    			&airbyte.DestinationResourceAllocationJobSpecificArgs{
    				JobType: pulumi.String("string"),
    				ResourceRequirements: &airbyte.DestinationResourceAllocationJobSpecificResourceRequirementsArgs{
    					CpuLimit:                pulumi.String("string"),
    					CpuRequest:              pulumi.String("string"),
    					EphemeralStorageLimit:   pulumi.String("string"),
    					EphemeralStorageRequest: pulumi.String("string"),
    					MemoryLimit:             pulumi.String("string"),
    					MemoryRequest:           pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var destinationResource = new Destination("destinationResource", DestinationArgs.builder()
        .configuration("string")
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .resourceAllocation(DestinationResourceAllocationArgs.builder()
            .default_(DestinationResourceAllocationDefaultArgs.builder()
                .cpuLimit("string")
                .cpuRequest("string")
                .ephemeralStorageLimit("string")
                .ephemeralStorageRequest("string")
                .memoryLimit("string")
                .memoryRequest("string")
                .build())
            .jobSpecifics(DestinationResourceAllocationJobSpecificArgs.builder()
                .jobType("string")
                .resourceRequirements(DestinationResourceAllocationJobSpecificResourceRequirementsArgs.builder()
                    .cpuLimit("string")
                    .cpuRequest("string")
                    .ephemeralStorageLimit("string")
                    .ephemeralStorageRequest("string")
                    .memoryLimit("string")
                    .memoryRequest("string")
                    .build())
                .build())
            .build())
        .build());
    
    destination_resource = airbyte.Destination("destinationResource",
        configuration="string",
        workspace_id="string",
        definition_id="string",
        name="string",
        resource_allocation={
            "default": {
                "cpu_limit": "string",
                "cpu_request": "string",
                "ephemeral_storage_limit": "string",
                "ephemeral_storage_request": "string",
                "memory_limit": "string",
                "memory_request": "string",
            },
            "job_specifics": [{
                "job_type": "string",
                "resource_requirements": {
                    "cpu_limit": "string",
                    "cpu_request": "string",
                    "ephemeral_storage_limit": "string",
                    "ephemeral_storage_request": "string",
                    "memory_limit": "string",
                    "memory_request": "string",
                },
            }],
        })
    
    const destinationResource = new airbyte.Destination("destinationResource", {
        configuration: "string",
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        resourceAllocation: {
            "default": {
                cpuLimit: "string",
                cpuRequest: "string",
                ephemeralStorageLimit: "string",
                ephemeralStorageRequest: "string",
                memoryLimit: "string",
                memoryRequest: "string",
            },
            jobSpecifics: [{
                jobType: "string",
                resourceRequirements: {
                    cpuLimit: "string",
                    cpuRequest: "string",
                    ephemeralStorageLimit: "string",
                    ephemeralStorageRequest: "string",
                    memoryLimit: "string",
                    memoryRequest: "string",
                },
            }],
        },
    });
    
    type: airbyte:Destination
    properties:
        configuration: string
        definitionId: string
        name: string
        resourceAllocation:
            default:
                cpuLimit: string
                cpuRequest: string
                ephemeralStorageLimit: string
                ephemeralStorageRequest: string
                memoryLimit: string
                memoryRequest: string
            jobSpecifics:
                - jobType: string
                  resourceRequirements:
                    cpuLimit: string
                    cpuRequest: string
                    ephemeralStorageLimit: string
                    ephemeralStorageRequest: string
                    memoryLimit: string
                    memoryRequest: string
        workspaceId: string
    

    Destination Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Destination resource accepts the following input properties:

    Configuration string
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    WorkspaceId string
    Requires replacement if changed.
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationResourceAllocation
    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.
    Configuration string
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    WorkspaceId string
    Requires replacement if changed.
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationResourceAllocationArgs
    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.
    configuration String
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    workspaceId String
    Requires replacement if changed.
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationResourceAllocation
    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.
    configuration string
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    workspaceId string
    Requires replacement if changed.
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationResourceAllocation
    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.
    configuration str
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    workspace_id str
    Requires replacement if changed.
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the destination e.g. dev-mysql-instance.
    resource_allocation DestinationResourceAllocationArgs
    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.
    configuration String
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    workspaceId String
    Requires replacement if changed.
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation Property Map
    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.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Destination resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    createdAt Number
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Destination Resource

    Get an existing Destination resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: DestinationState, opts?: CustomResourceOptions): Destination
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[str] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[DestinationResourceAllocationArgs] = None,
            workspace_id: Optional[str] = None) -> Destination
    func GetDestination(ctx *Context, name string, id IDInput, state *DestinationState, opts ...ResourceOption) (*Destination, error)
    public static Destination Get(string name, Input<string> id, DestinationState? state, CustomResourceOptions? opts = null)
    public static Destination get(String name, Output<String> id, DestinationState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:Destination    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Configuration string
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationResourceAllocation
    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.
    WorkspaceId string
    Requires replacement if changed.
    Configuration string
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationResourceAllocationArgs
    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.
    WorkspaceId string
    Requires replacement if changed.
    configuration String
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationResourceAllocation
    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.
    workspaceId String
    Requires replacement if changed.
    configuration string
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationResourceAllocation
    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.
    workspaceId string
    Requires replacement if changed.
    configuration str
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    resource_allocation DestinationResourceAllocationArgs
    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.
    workspace_id str
    Requires replacement if changed.
    configuration String
    The values required to configure the destination. The schema for this must match the schema return by destinationdefinitionspecifications/get for the destinationDefinition. Parsed as JSON.
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation Property Map
    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.
    workspaceId String
    Requires replacement if changed.

    Supporting Types

    DestinationResourceAllocation, DestinationResourceAllocationArgs

    Default DestinationResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics List<DestinationResourceAllocationJobSpecific>
    Default DestinationResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics []DestinationResourceAllocationJobSpecific
    default_ DestinationResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<DestinationResourceAllocationJobSpecific>
    default DestinationResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics DestinationResourceAllocationJobSpecific[]
    default DestinationResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    job_specifics Sequence[DestinationResourceAllocationJobSpecific]
    default Property Map
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<Property Map>

    DestinationResourceAllocationDefault, DestinationResourceAllocationDefaultArgs

    DestinationResourceAllocationJobSpecific, DestinationResourceAllocationJobSpecificArgs

    JobType string
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    ResourceRequirements DestinationResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    JobType string
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    ResourceRequirements DestinationResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    jobType String
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resourceRequirements DestinationResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    jobType string
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resourceRequirements DestinationResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    job_type str
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resource_requirements DestinationResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations). Not Null
    jobType String
    enum that describes the different types of jobs that the platform runs. Not Null; must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", <span pulumi-lang-nodejs=""connectionUpdater"" pulumi-lang-dotnet=""ConnectionUpdater"" pulumi-lang-go=""connectionUpdater"" pulumi-lang-python=""connection_updater"" pulumi-lang-yaml=""connectionUpdater"" pulumi-lang-java=""connectionUpdater"">"connection_updater", "replicate"]
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations). Not Null

    DestinationResourceAllocationJobSpecificResourceRequirements, DestinationResourceAllocationJobSpecificResourceRequirementsArgs

    Package Details

    Repository
    airbyte airbytehq/terraform-provider-airbyte
    License
    Notes
    This Pulumi package is based on the airbyte Terraform Provider.
    airbyte logo
    Viewing docs for airbyte 1.0.0
    published on Wednesday, Mar 4, 2026 by airbytehq
      Try Pulumi Cloud free. Your team will thank you.