1. Packages
  2. Fivetran Provider
  3. API Docs
  4. getDbtProject
fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran

fivetran.getDbtProject

Explore with Pulumi AI

fivetran logo
fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran

    This data source returns a dbt Project object.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fivetran from "@pulumi/fivetran";
    
    const project = fivetran.getDbtProject({
        id: "project_id",
    });
    
    import pulumi
    import pulumi_fivetran as fivetran
    
    project = fivetran.get_dbt_project(id="project_id")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fivetran/fivetran"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fivetran.LookupDbtProject(ctx, &fivetran.LookupDbtProjectArgs{
    			Id: "project_id",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fivetran = Pulumi.Fivetran;
    
    return await Deployment.RunAsync(() => 
    {
        var project = Fivetran.GetDbtProject.Invoke(new()
        {
            Id = "project_id",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fivetran.FivetranFunctions;
    import com.pulumi.fivetran.inputs.GetDbtProjectArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var project = FivetranFunctions.getDbtProject(GetDbtProjectArgs.builder()
                .id("project_id")
                .build());
    
        }
    }
    
    variables:
      project:
        fn::invoke:
          function: fivetran:getDbtProject
          arguments:
            id: project_id
    

    Using getDbtProject

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDbtProject(args: GetDbtProjectArgs, opts?: InvokeOptions): Promise<GetDbtProjectResult>
    function getDbtProjectOutput(args: GetDbtProjectOutputArgs, opts?: InvokeOptions): Output<GetDbtProjectResult>
    def get_dbt_project(id: Optional[str] = None,
                        project_config: Optional[GetDbtProjectProjectConfig] = None,
                        opts: Optional[InvokeOptions] = None) -> GetDbtProjectResult
    def get_dbt_project_output(id: Optional[pulumi.Input[str]] = None,
                        project_config: Optional[pulumi.Input[GetDbtProjectProjectConfigArgs]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetDbtProjectResult]
    func LookupDbtProject(ctx *Context, args *LookupDbtProjectArgs, opts ...InvokeOption) (*LookupDbtProjectResult, error)
    func LookupDbtProjectOutput(ctx *Context, args *LookupDbtProjectOutputArgs, opts ...InvokeOption) LookupDbtProjectResultOutput

    > Note: This function is named LookupDbtProject in the Go SDK.

    public static class GetDbtProject 
    {
        public static Task<GetDbtProjectResult> InvokeAsync(GetDbtProjectArgs args, InvokeOptions? opts = null)
        public static Output<GetDbtProjectResult> Invoke(GetDbtProjectInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbtProjectResult> getDbtProject(GetDbtProjectArgs args, InvokeOptions options)
    public static Output<GetDbtProjectResult> getDbtProject(GetDbtProjectArgs args, InvokeOptions options)
    
    fn::invoke:
      function: fivetran:index/getDbtProject:getDbtProject
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The unique identifier for the dbt Project within the Fivetran system.
    ProjectConfig GetDbtProjectProjectConfig
    Id string
    The unique identifier for the dbt Project within the Fivetran system.
    ProjectConfig GetDbtProjectProjectConfig
    id String
    The unique identifier for the dbt Project within the Fivetran system.
    projectConfig GetDbtProjectProjectConfig
    id string
    The unique identifier for the dbt Project within the Fivetran system.
    projectConfig GetDbtProjectProjectConfig
    id str
    The unique identifier for the dbt Project within the Fivetran system.
    project_config GetDbtProjectProjectConfig
    id String
    The unique identifier for the dbt Project within the Fivetran system.
    projectConfig Property Map

    getDbtProject Result

    The following output properties are available:

    CreatedAt string
    The timestamp of the dbt Project creation.
    CreatedById string
    The unique identifier for the User within the Fivetran system who created the dbt Project.
    DbtVersion string
    The version of dbt that should run the project. We support the following versions: 0.18.0 - 0.18.2, 0.19.0 - 0.19.2, 0.20.0 - 0.20.2, 0.21.0 - 0.21.1, 1.0.0, 1.0.1, 1.0.3 - 1.0.9, 1.1.0 - 1.1.3, 1.2.0 - 1.2.4, 1.3.0 - 1.3.2, 1.4.1.
    DefaultSchema string
    Default schema in destination. This production schema will contain your transformed data.
    EnsureReadiness bool
    Should resource wait for project to finish initialization. Default value: true.
    EnvironmentVars List<string>
    List of environment variables defined as key-value pairs in the raw string format using = as a separator. The variable name should have the DBT_ prefix and can contain A-Z, 0-9, dash, underscore, or dot characters. Example: "DBT*VARIABLE=variable*value"
    GroupId string
    The unique identifier for the group within the Fivetran system.
    Id string
    The unique identifier for the dbt Project within the Fivetran system.
    Models List<GetDbtProjectModel>
    PublicKey string
    Public key to grant Fivetran SSH access to git repository.
    Status string
    Status of dbt Project (NOT_READY, READY, ERROR).
    TargetName string
    Target name to set or override the value from the deployment.yaml
    Threads double
    The number of threads dbt will use (from 1 to 32). Make sure this value is compatible with your destination type. For example, Snowflake supports only 8 concurrent queries on an X-Small warehouse.
    Type string
    Type of dbt Project. Currently only GIT supported. Empty value will be considered as default (GIT).
    ProjectConfig GetDbtProjectProjectConfig
    CreatedAt string
    The timestamp of the dbt Project creation.
    CreatedById string
    The unique identifier for the User within the Fivetran system who created the dbt Project.
    DbtVersion string
    The version of dbt that should run the project. We support the following versions: 0.18.0 - 0.18.2, 0.19.0 - 0.19.2, 0.20.0 - 0.20.2, 0.21.0 - 0.21.1, 1.0.0, 1.0.1, 1.0.3 - 1.0.9, 1.1.0 - 1.1.3, 1.2.0 - 1.2.4, 1.3.0 - 1.3.2, 1.4.1.
    DefaultSchema string
    Default schema in destination. This production schema will contain your transformed data.
    EnsureReadiness bool
    Should resource wait for project to finish initialization. Default value: true.
    EnvironmentVars []string
    List of environment variables defined as key-value pairs in the raw string format using = as a separator. The variable name should have the DBT_ prefix and can contain A-Z, 0-9, dash, underscore, or dot characters. Example: "DBT*VARIABLE=variable*value"
    GroupId string
    The unique identifier for the group within the Fivetran system.
    Id string
    The unique identifier for the dbt Project within the Fivetran system.
    Models []GetDbtProjectModel
    PublicKey string
    Public key to grant Fivetran SSH access to git repository.
    Status string
    Status of dbt Project (NOT_READY, READY, ERROR).
    TargetName string
    Target name to set or override the value from the deployment.yaml
    Threads float64
    The number of threads dbt will use (from 1 to 32). Make sure this value is compatible with your destination type. For example, Snowflake supports only 8 concurrent queries on an X-Small warehouse.
    Type string
    Type of dbt Project. Currently only GIT supported. Empty value will be considered as default (GIT).
    ProjectConfig GetDbtProjectProjectConfig
    createdAt String
    The timestamp of the dbt Project creation.
    createdById String
    The unique identifier for the User within the Fivetran system who created the dbt Project.
    dbtVersion String
    The version of dbt that should run the project. We support the following versions: 0.18.0 - 0.18.2, 0.19.0 - 0.19.2, 0.20.0 - 0.20.2, 0.21.0 - 0.21.1, 1.0.0, 1.0.1, 1.0.3 - 1.0.9, 1.1.0 - 1.1.3, 1.2.0 - 1.2.4, 1.3.0 - 1.3.2, 1.4.1.
    defaultSchema String
    Default schema in destination. This production schema will contain your transformed data.
    ensureReadiness Boolean
    Should resource wait for project to finish initialization. Default value: true.
    environmentVars List<String>
    List of environment variables defined as key-value pairs in the raw string format using = as a separator. The variable name should have the DBT_ prefix and can contain A-Z, 0-9, dash, underscore, or dot characters. Example: "DBT*VARIABLE=variable*value"
    groupId String
    The unique identifier for the group within the Fivetran system.
    id String
    The unique identifier for the dbt Project within the Fivetran system.
    models List<GetDbtProjectModel>
    publicKey String
    Public key to grant Fivetran SSH access to git repository.
    status String
    Status of dbt Project (NOT_READY, READY, ERROR).
    targetName String
    Target name to set or override the value from the deployment.yaml
    threads Double
    The number of threads dbt will use (from 1 to 32). Make sure this value is compatible with your destination type. For example, Snowflake supports only 8 concurrent queries on an X-Small warehouse.
    type String
    Type of dbt Project. Currently only GIT supported. Empty value will be considered as default (GIT).
    projectConfig GetDbtProjectProjectConfig
    createdAt string
    The timestamp of the dbt Project creation.
    createdById string
    The unique identifier for the User within the Fivetran system who created the dbt Project.
    dbtVersion string
    The version of dbt that should run the project. We support the following versions: 0.18.0 - 0.18.2, 0.19.0 - 0.19.2, 0.20.0 - 0.20.2, 0.21.0 - 0.21.1, 1.0.0, 1.0.1, 1.0.3 - 1.0.9, 1.1.0 - 1.1.3, 1.2.0 - 1.2.4, 1.3.0 - 1.3.2, 1.4.1.
    defaultSchema string
    Default schema in destination. This production schema will contain your transformed data.
    ensureReadiness boolean
    Should resource wait for project to finish initialization. Default value: true.
    environmentVars string[]
    List of environment variables defined as key-value pairs in the raw string format using = as a separator. The variable name should have the DBT_ prefix and can contain A-Z, 0-9, dash, underscore, or dot characters. Example: "DBT*VARIABLE=variable*value"
    groupId string
    The unique identifier for the group within the Fivetran system.
    id string
    The unique identifier for the dbt Project within the Fivetran system.
    models GetDbtProjectModel[]
    publicKey string
    Public key to grant Fivetran SSH access to git repository.
    status string
    Status of dbt Project (NOT_READY, READY, ERROR).
    targetName string
    Target name to set or override the value from the deployment.yaml
    threads number
    The number of threads dbt will use (from 1 to 32). Make sure this value is compatible with your destination type. For example, Snowflake supports only 8 concurrent queries on an X-Small warehouse.
    type string
    Type of dbt Project. Currently only GIT supported. Empty value will be considered as default (GIT).
    projectConfig GetDbtProjectProjectConfig
    created_at str
    The timestamp of the dbt Project creation.
    created_by_id str
    The unique identifier for the User within the Fivetran system who created the dbt Project.
    dbt_version str
    The version of dbt that should run the project. We support the following versions: 0.18.0 - 0.18.2, 0.19.0 - 0.19.2, 0.20.0 - 0.20.2, 0.21.0 - 0.21.1, 1.0.0, 1.0.1, 1.0.3 - 1.0.9, 1.1.0 - 1.1.3, 1.2.0 - 1.2.4, 1.3.0 - 1.3.2, 1.4.1.
    default_schema str
    Default schema in destination. This production schema will contain your transformed data.
    ensure_readiness bool
    Should resource wait for project to finish initialization. Default value: true.
    environment_vars Sequence[str]
    List of environment variables defined as key-value pairs in the raw string format using = as a separator. The variable name should have the DBT_ prefix and can contain A-Z, 0-9, dash, underscore, or dot characters. Example: "DBT*VARIABLE=variable*value"
    group_id str
    The unique identifier for the group within the Fivetran system.
    id str
    The unique identifier for the dbt Project within the Fivetran system.
    models Sequence[GetDbtProjectModel]
    public_key str
    Public key to grant Fivetran SSH access to git repository.
    status str
    Status of dbt Project (NOT_READY, READY, ERROR).
    target_name str
    Target name to set or override the value from the deployment.yaml
    threads float
    The number of threads dbt will use (from 1 to 32). Make sure this value is compatible with your destination type. For example, Snowflake supports only 8 concurrent queries on an X-Small warehouse.
    type str
    Type of dbt Project. Currently only GIT supported. Empty value will be considered as default (GIT).
    project_config GetDbtProjectProjectConfig
    createdAt String
    The timestamp of the dbt Project creation.
    createdById String
    The unique identifier for the User within the Fivetran system who created the dbt Project.
    dbtVersion String
    The version of dbt that should run the project. We support the following versions: 0.18.0 - 0.18.2, 0.19.0 - 0.19.2, 0.20.0 - 0.20.2, 0.21.0 - 0.21.1, 1.0.0, 1.0.1, 1.0.3 - 1.0.9, 1.1.0 - 1.1.3, 1.2.0 - 1.2.4, 1.3.0 - 1.3.2, 1.4.1.
    defaultSchema String
    Default schema in destination. This production schema will contain your transformed data.
    ensureReadiness Boolean
    Should resource wait for project to finish initialization. Default value: true.
    environmentVars List<String>
    List of environment variables defined as key-value pairs in the raw string format using = as a separator. The variable name should have the DBT_ prefix and can contain A-Z, 0-9, dash, underscore, or dot characters. Example: "DBT*VARIABLE=variable*value"
    groupId String
    The unique identifier for the group within the Fivetran system.
    id String
    The unique identifier for the dbt Project within the Fivetran system.
    models List<Property Map>
    publicKey String
    Public key to grant Fivetran SSH access to git repository.
    status String
    Status of dbt Project (NOT_READY, READY, ERROR).
    targetName String
    Target name to set or override the value from the deployment.yaml
    threads Number
    The number of threads dbt will use (from 1 to 32). Make sure this value is compatible with your destination type. For example, Snowflake supports only 8 concurrent queries on an X-Small warehouse.
    type String
    Type of dbt Project. Currently only GIT supported. Empty value will be considered as default (GIT).
    projectConfig Property Map

    Supporting Types

    GetDbtProjectModel

    Id string
    The unique identifier for the dbt Model within the Fivetran system.
    ModelName string
    The dbt Model name.
    Scheduled bool
    Boolean specifying whether the model is selected for execution in the dashboard.
    Id string
    The unique identifier for the dbt Model within the Fivetran system.
    ModelName string
    The dbt Model name.
    Scheduled bool
    Boolean specifying whether the model is selected for execution in the dashboard.
    id String
    The unique identifier for the dbt Model within the Fivetran system.
    modelName String
    The dbt Model name.
    scheduled Boolean
    Boolean specifying whether the model is selected for execution in the dashboard.
    id string
    The unique identifier for the dbt Model within the Fivetran system.
    modelName string
    The dbt Model name.
    scheduled boolean
    Boolean specifying whether the model is selected for execution in the dashboard.
    id str
    The unique identifier for the dbt Model within the Fivetran system.
    model_name str
    The dbt Model name.
    scheduled bool
    Boolean specifying whether the model is selected for execution in the dashboard.
    id String
    The unique identifier for the dbt Model within the Fivetran system.
    modelName String
    The dbt Model name.
    scheduled Boolean
    Boolean specifying whether the model is selected for execution in the dashboard.

    GetDbtProjectProjectConfig

    FolderPath string
    Folder in Git repo with your dbt project
    GitBranch string
    Git branch
    GitRemoteUrl string
    Git remote URL with your dbt project
    FolderPath string
    Folder in Git repo with your dbt project
    GitBranch string
    Git branch
    GitRemoteUrl string
    Git remote URL with your dbt project
    folderPath String
    Folder in Git repo with your dbt project
    gitBranch String
    Git branch
    gitRemoteUrl String
    Git remote URL with your dbt project
    folderPath string
    Folder in Git repo with your dbt project
    gitBranch string
    Git branch
    gitRemoteUrl string
    Git remote URL with your dbt project
    folder_path str
    Folder in Git repo with your dbt project
    git_branch str
    Git branch
    git_remote_url str
    Git remote URL with your dbt project
    folderPath String
    Folder in Git repo with your dbt project
    gitBranch String
    Git branch
    gitRemoteUrl String
    Git remote URL with your dbt project

    Package Details

    Repository
    fivetran fivetran/terraform-provider-fivetran
    License
    Notes
    This Pulumi package is based on the fivetran Terraform Provider.
    fivetran logo
    fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran