This template generates Scala code for AWS Glue using a Directed Acyclic Graph (DAG) to define data flow between nodes.

Terraform Template

data "aws_glue_script" "example" {
  dag_edge = ["datasource0", "applymapping1", "applymapping1", "selectfields2", "selectfields2", "resolvechoice3", "resolvechoice3", "datasink4"]
  dag_node = ["database", ""${aws_glue_catalog_database.source.name}"", "table_name", ""${aws_glue_catalog_table.source.name}"", "datasource0", "DataSource", "mappings", "[("column1", "string", "column1", "string")]", "applymapping1", "ApplyMapping", "paths", "["column1"]", "selectfields2", "SelectFields", "choice", ""MATCH_CATALOG"", "database", ""${aws_glue_catalog_database.destination.name}"", "table_name", ""${aws_glue_catalog_table.destination.name}"", "resolvechoice3", "ResolveChoice", "database", ""${aws_glue_catalog_database.destination.name}"", "table_name", ""${aws_glue_catalog_table.destination.name}"", "datasink4", "DataSink"]
  language = "SCALA"
}

output "scala_code" {
  value = data.aws_glue_script.example.scala_code
}