Skip to content

Commit

Permalink
Added back the ouptputs for the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ParthaI committed Dec 12, 2023
1 parent aebebcc commit dbe909e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion csv_to_json/local_csv_file_to_json.fp
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,14 @@ pipeline "local_csv_file_to_json" {
value = file("${param.local_csv_file_path}")
}

output "csv_decoded" {
description = "Decoded data from the CSV file."
value = csvdecode(file("${param.local_csv_file_path}"))
}

output "csv_to_json" {
description = "CSV file converted to JSON."
value = jsondecode(step.transform.local_csv_file_to_json.value)
value = step.transform.local_csv_file_to_json.value
}

}

0 comments on commit dbe909e

Please sign in to comment.