fivetran 1.5.1 published on Friday, Mar 7, 2025 by fivetran
fivetran.getDbtProject
Explore with Pulumi AI
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.
- Project
Config GetDbt Project Project Config
- Id string
- The unique identifier for the dbt Project within the Fivetran system.
- Project
Config GetDbt Project Project Config
- id String
- The unique identifier for the dbt Project within the Fivetran system.
- project
Config GetDbt Project Project Config
- id string
- The unique identifier for the dbt Project within the Fivetran system.
- project
Config GetDbt Project Project Config
- id str
- The unique identifier for the dbt Project within the Fivetran system.
- project_
config GetDbt Project Project Config
- id String
- The unique identifier for the dbt Project within the Fivetran system.
- project
Config Property Map
getDbtProject Result
The following output properties are available:
- Created
At string - The timestamp of the dbt Project creation.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- Dbt
Version 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.
- Default
Schema string - 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 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"
- Group
Id 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<Get
Dbt Project Model> - Public
Key string - Public key to grant Fivetran SSH access to git repository.
- Status string
- Status of dbt Project (NOT_READY, READY, ERROR).
- Target
Name 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). - Project
Config GetDbt Project Project Config
- Created
At string - The timestamp of the dbt Project creation.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- Dbt
Version 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.
- Default
Schema string - 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 []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"
- Group
Id 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
[]Get
Dbt Project Model - Public
Key string - Public key to grant Fivetran SSH access to git repository.
- Status string
- Status of dbt Project (NOT_READY, READY, ERROR).
- Target
Name 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). - Project
Config GetDbt Project Project Config
- created
At String - The timestamp of the dbt Project creation.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- dbt
Version 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.
- default
Schema String - Default schema in destination. This production schema will contain your transformed data.
- ensure
Readiness Boolean - Should resource wait for project to finish initialization. Default value: true.
- environment
Vars 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"
- group
Id 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<Get
Dbt Project Model> - public
Key String - Public key to grant Fivetran SSH access to git repository.
- status String
- Status of dbt Project (NOT_READY, READY, ERROR).
- target
Name 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). - project
Config GetDbt Project Project Config
- created
At string - The timestamp of the dbt Project creation.
- created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- dbt
Version 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.
- default
Schema string - Default schema in destination. This production schema will contain your transformed data.
- ensure
Readiness boolean - Should resource wait for project to finish initialization. Default value: true.
- environment
Vars 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"
- group
Id 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
Get
Dbt Project Model[] - public
Key string - Public key to grant Fivetran SSH access to git repository.
- status string
- Status of dbt Project (NOT_READY, READY, ERROR).
- target
Name 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). - project
Config GetDbt Project Project Config
- created_
at str - The timestamp of the dbt Project creation.
- created_
by_ strid - 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[Get
Dbt Project Model] - 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 GetDbt Project Project Config
- created
At String - The timestamp of the dbt Project creation.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- dbt
Version 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.
- default
Schema String - Default schema in destination. This production schema will contain your transformed data.
- ensure
Readiness Boolean - Should resource wait for project to finish initialization. Default value: true.
- environment
Vars 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"
- group
Id 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>
- public
Key String - Public key to grant Fivetran SSH access to git repository.
- status String
- Status of dbt Project (NOT_READY, READY, ERROR).
- target
Name 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). - project
Config Property Map
Supporting Types
GetDbtProjectModel
- 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.
GetDbtProjectProjectConfig
- Folder
Path string - Folder in Git repo with your dbt project
- Git
Branch string - Git branch
- Git
Remote stringUrl - Git remote URL with your dbt project
- Folder
Path string - Folder in Git repo with your dbt project
- Git
Branch string - Git branch
- Git
Remote stringUrl - Git remote URL with your dbt project
- folder
Path String - Folder in Git repo with your dbt project
- git
Branch String - Git branch
- git
Remote StringUrl - Git remote URL with your dbt project
- folder
Path string - Folder in Git repo with your dbt project
- git
Branch string - Git branch
- git
Remote stringUrl - 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_ strurl - Git remote URL with your dbt project
- folder
Path String - Folder in Git repo with your dbt project
- git
Branch String - Git branch
- git
Remote StringUrl - 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.