fivetran.TransformationProject
Explore with Pulumi AI
Import
To import an existing
fivetran_transformation_project
resource into your Terraform state, you need to get Transformation Project ID via API callGET https://api.fivetran.com/v1/transformation-projects
to retrieve available projects.Fetch project details for particular
project-id
usingGET https://api.fivetran.com/v1/transformation-projects/{project-id}
to ensure that this is the project you want to import.Define an empty resource in your
.tf
configuration:
hcl
resource “fivetran_transformation_project” “my_imported_fivetran_transformation_project” {
}
- Run the
pulumi import
command:
$ pulumi import fivetran:index/transformationProject:TransformationProject my_imported_fivetran_transformation_project {Transformation Project ID}
- Use the
terraform state show
command to get the values from the state:
terraform state show ‘fivetran_transformation_project.my_imported_fivetran_transformation_project’
- Copy the values and paste them to your
.tf
configuration.
Create TransformationProject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransformationProject(name: string, args: TransformationProjectArgs, opts?: CustomResourceOptions);
@overload
def TransformationProject(resource_name: str,
args: TransformationProjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TransformationProject(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_id: Optional[str] = None,
type: Optional[str] = None,
project_config: Optional[TransformationProjectProjectConfigArgs] = None,
run_tests: Optional[bool] = None)
func NewTransformationProject(ctx *Context, name string, args TransformationProjectArgs, opts ...ResourceOption) (*TransformationProject, error)
public TransformationProject(string name, TransformationProjectArgs args, CustomResourceOptions? opts = null)
public TransformationProject(String name, TransformationProjectArgs args)
public TransformationProject(String name, TransformationProjectArgs args, CustomResourceOptions options)
type: fivetran:TransformationProject
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 TransformationProjectArgs
- 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 TransformationProjectArgs
- 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 TransformationProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransformationProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransformationProjectArgs
- 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 transformationProjectResource = new Fivetran.TransformationProject("transformationProjectResource", new()
{
GroupId = "string",
Type = "string",
ProjectConfig = new Fivetran.Inputs.TransformationProjectProjectConfigArgs
{
DbtVersion = "string",
DefaultSchema = "string",
EnvironmentVars = new[]
{
"string",
},
FolderPath = "string",
GitBranch = "string",
GitRemoteUrl = "string",
PublicKey = "string",
TargetName = "string",
Threads = 0,
},
RunTests = false,
});
example, err := fivetran.NewTransformationProject(ctx, "transformationProjectResource", &fivetran.TransformationProjectArgs{
GroupId: pulumi.String("string"),
Type: pulumi.String("string"),
ProjectConfig: &.TransformationProjectProjectConfigArgs{
DbtVersion: pulumi.String("string"),
DefaultSchema: pulumi.String("string"),
EnvironmentVars: pulumi.StringArray{
pulumi.String("string"),
},
FolderPath: pulumi.String("string"),
GitBranch: pulumi.String("string"),
GitRemoteUrl: pulumi.String("string"),
PublicKey: pulumi.String("string"),
TargetName: pulumi.String("string"),
Threads: pulumi.Float64(0),
},
RunTests: pulumi.Bool(false),
})
var transformationProjectResource = new TransformationProject("transformationProjectResource", TransformationProjectArgs.builder()
.groupId("string")
.type("string")
.projectConfig(TransformationProjectProjectConfigArgs.builder()
.dbtVersion("string")
.defaultSchema("string")
.environmentVars("string")
.folderPath("string")
.gitBranch("string")
.gitRemoteUrl("string")
.publicKey("string")
.targetName("string")
.threads(0)
.build())
.runTests(false)
.build());
transformation_project_resource = fivetran.TransformationProject("transformationProjectResource",
group_id="string",
type="string",
project_config={
"dbt_version": "string",
"default_schema": "string",
"environment_vars": ["string"],
"folder_path": "string",
"git_branch": "string",
"git_remote_url": "string",
"public_key": "string",
"target_name": "string",
"threads": 0,
},
run_tests=False)
const transformationProjectResource = new fivetran.TransformationProject("transformationProjectResource", {
groupId: "string",
type: "string",
projectConfig: {
dbtVersion: "string",
defaultSchema: "string",
environmentVars: ["string"],
folderPath: "string",
gitBranch: "string",
gitRemoteUrl: "string",
publicKey: "string",
targetName: "string",
threads: 0,
},
runTests: false,
});
type: fivetran:TransformationProject
properties:
groupId: string
projectConfig:
dbtVersion: string
defaultSchema: string
environmentVars:
- string
folderPath: string
gitBranch: string
gitRemoteUrl: string
publicKey: string
targetName: string
threads: 0
runTests: false
type: string
TransformationProject 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 TransformationProject resource accepts the following input properties:
- Group
Id string - The unique identifier for the group within the Fivetran system.
- Type string
- Transformation project type.
- Project
Config TransformationProject Project Config - Run
Tests bool - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- Group
Id string - The unique identifier for the group within the Fivetran system.
- Type string
- Transformation project type.
- Project
Config TransformationProject Project Config Args - Run
Tests bool - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- group
Id String - The unique identifier for the group within the Fivetran system.
- type String
- Transformation project type.
- project
Config TransformationProject Project Config - run
Tests Boolean - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- group
Id string - The unique identifier for the group within the Fivetran system.
- type string
- Transformation project type.
- project
Config TransformationProject Project Config - run
Tests boolean - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- group_
id str - The unique identifier for the group within the Fivetran system.
- type str
- Transformation project type.
- project_
config TransformationProject Project Config Args - run_
tests bool - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- group
Id String - The unique identifier for the group within the Fivetran system.
- type String
- Transformation project type.
- project
Config Property Map - run
Tests Boolean - Specifies whether the setup tests should be run automatically. The default value is TRUE.
Outputs
All input properties are implicitly available as output properties. Additionally, the TransformationProject resource produces the following output properties:
- Created
At string - The timestamp of the transformation Project creation.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- Errors 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of transformation Project (NOT_READY, READY, ERROR).
- Created
At string - The timestamp of the transformation Project creation.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- Errors []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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Status of transformation Project (NOT_READY, READY, ERROR).
- created
At String - The timestamp of the transformation Project creation.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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"
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of transformation Project (NOT_READY, READY, ERROR).
- created
At string - The timestamp of the transformation Project creation.
- created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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"
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Status of transformation Project (NOT_READY, READY, ERROR).
- created_
at str - The timestamp of the transformation Project creation.
- created_
by_ strid - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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"
- id str
- The provider-assigned unique ID for this managed resource.
- status str
- Status of transformation Project (NOT_READY, READY, ERROR).
- created
At String - The timestamp of the transformation Project creation.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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"
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Status of transformation Project (NOT_READY, READY, ERROR).
Look up Existing TransformationProject Resource
Get an existing TransformationProject 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?: TransformationProjectState, opts?: CustomResourceOptions): TransformationProject
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
created_by_id: Optional[str] = None,
errors: Optional[Sequence[str]] = None,
group_id: Optional[str] = None,
project_config: Optional[TransformationProjectProjectConfigArgs] = None,
run_tests: Optional[bool] = None,
status: Optional[str] = None,
type: Optional[str] = None) -> TransformationProject
func GetTransformationProject(ctx *Context, name string, id IDInput, state *TransformationProjectState, opts ...ResourceOption) (*TransformationProject, error)
public static TransformationProject Get(string name, Input<string> id, TransformationProjectState? state, CustomResourceOptions? opts = null)
public static TransformationProject get(String name, Output<String> id, TransformationProjectState state, CustomResourceOptions options)
resources: _: type: fivetran:TransformationProject 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.
- Created
At string - The timestamp of the transformation Project creation.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- Errors 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.
- Project
Config TransformationProject Project Config - Run
Tests bool - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- Status string
- Status of transformation Project (NOT_READY, READY, ERROR).
- Type string
- Transformation project type.
- Created
At string - The timestamp of the transformation Project creation.
- Created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- Errors []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.
- Project
Config TransformationProject Project Config Args - Run
Tests bool - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- Status string
- Status of transformation Project (NOT_READY, READY, ERROR).
- Type string
- Transformation project type.
- created
At String - The timestamp of the transformation Project creation.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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.
- project
Config TransformationProject Project Config - run
Tests Boolean - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- status String
- Status of transformation Project (NOT_READY, READY, ERROR).
- type String
- Transformation project type.
- created
At string - The timestamp of the transformation Project creation.
- created
By stringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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.
- project
Config TransformationProject Project Config - run
Tests boolean - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- status string
- Status of transformation Project (NOT_READY, READY, ERROR).
- type string
- Transformation project type.
- created_
at str - The timestamp of the transformation Project creation.
- created_
by_ strid - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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.
- project_
config TransformationProject Project Config Args - run_
tests bool - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- status str
- Status of transformation Project (NOT_READY, READY, ERROR).
- type str
- Transformation project type.
- created
At String - The timestamp of the transformation Project creation.
- created
By StringId - The unique identifier for the User within the Fivetran system who created the dbt Project.
- errors 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.
- project
Config Property Map - run
Tests Boolean - Specifies whether the setup tests should be run automatically. The default value is TRUE.
- status String
- Status of transformation Project (NOT_READY, READY, ERROR).
- type String
- Transformation project type.
Supporting Types
TransformationProjectProjectConfig, TransformationProjectProjectConfigArgs
- Dbt
Version string - The version of transformation that should run the project
- Default
Schema string - Default schema in destination. This production schema will contain your transformed data.
- 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"
- Folder
Path string - Folder in Git repo with your transformation project
- Git
Branch string - Git branch
- Git
Remote stringUrl - Git remote URL with your transformation project
- Public
Key string - Public key to grant Fivetran SSH access to git repository.
- Target
Name string - Target name to set or override the value from the deployment.yaml
- Threads double
- The number of threads transformation 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.
- Dbt
Version string - The version of transformation that should run the project
- Default
Schema string - Default schema in destination. This production schema will contain your transformed data.
- 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"
- Folder
Path string - Folder in Git repo with your transformation project
- Git
Branch string - Git branch
- Git
Remote stringUrl - Git remote URL with your transformation project
- Public
Key string - Public key to grant Fivetran SSH access to git repository.
- Target
Name string - Target name to set or override the value from the deployment.yaml
- Threads float64
- The number of threads transformation 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.
- dbt
Version String - The version of transformation that should run the project
- default
Schema String - Default schema in destination. This production schema will contain your transformed data.
- 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"
- folder
Path String - Folder in Git repo with your transformation project
- git
Branch String - Git branch
- git
Remote StringUrl - Git remote URL with your transformation project
- public
Key String - Public key to grant Fivetran SSH access to git repository.
- target
Name String - Target name to set or override the value from the deployment.yaml
- threads Double
- The number of threads transformation 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.
- dbt
Version string - The version of transformation that should run the project
- default
Schema string - Default schema in destination. This production schema will contain your transformed data.
- 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"
- folder
Path string - Folder in Git repo with your transformation project
- git
Branch string - Git branch
- git
Remote stringUrl - Git remote URL with your transformation project
- public
Key string - Public key to grant Fivetran SSH access to git repository.
- target
Name string - Target name to set or override the value from the deployment.yaml
- threads number
- The number of threads transformation 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.
- dbt_
version str - The version of transformation that should run the project
- default_
schema str - Default schema in destination. This production schema will contain your transformed data.
- 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"
- folder_
path str - Folder in Git repo with your transformation project
- git_
branch str - Git branch
- git_
remote_ strurl - Git remote URL with your transformation project
- public_
key str - Public key to grant Fivetran SSH access to git repository.
- target_
name str - Target name to set or override the value from the deployment.yaml
- threads float
- The number of threads transformation 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.
- dbt
Version String - The version of transformation that should run the project
- default
Schema String - Default schema in destination. This production schema will contain your transformed data.
- 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"
- folder
Path String - Folder in Git repo with your transformation project
- git
Branch String - Git branch
- git
Remote StringUrl - Git remote URL with your transformation project
- public
Key String - Public key to grant Fivetran SSH access to git repository.
- target
Name String - Target name to set or override the value from the deployment.yaml
- threads Number
- The number of threads transformation 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.
Package Details
- Repository
- fivetran fivetran/terraform-provider-fivetran
- License
- Notes
- This Pulumi package is based on the
fivetran
Terraform Provider.