https://flyte.org logo
#flytekit
Title
# flytekit
l

Laura Lin

10/20/2022, 8:00 PM
How would I get the resolved value for a workflow input? e.g. If I have a workflow with input
(a: str)
and when I call a task, I want to feed in
(a=a, b=f"{a}-b")
as input to the task. I don't want to create b inside the task.
e

Eduardo Apolinario (eapolinario)

10/20/2022, 9:15 PM
you can't do this in a regular workflow invoking a task, but you can achieve that in a dynamic task
l

Laura Lin

10/20/2022, 9:21 PM
ah thanks!
2 Views