-
Notifications
You must be signed in to change notification settings - Fork 9
Transformations
Phillip Wong edited this page Nov 30, 2017
·
3 revisions
A transformation bucket is an organisational grouping of transformations that are related.
resource "keboola_transformation_bucket" "example_transforms" {
name = "Example Transformations"
description = "This is a bucket of example transformations."
}
-
name
- (Required) The name for this transformation bucket. -
description
- (Optional) A description for this tranformation bucket. May contain markdown.
-
id
- The numerical ID for this transformation bucket.
resource "keboola_transformation" "example_transformation" {
bucket_id = "1"
name = "Example Transform"
description = "This is an example transform"
backend = "snowflake"
type = "simple"
queries = [ "CREATE TABLE \"titles\" AS SELECT e.\"EMPLOYEE_ID\", e.\"TITLE\" FROM \"employees\" e;" ]
input {
source = "in.c-northwind.employees"
destination = "employees"
}
output {
source = "titles"
destination = "out.c-transformed.employee_titles"
incremental = true
}
}