How would I get the resolved value for a workflow ...
# flytekit
l
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
you can't do this in a regular workflow invoking a task, but you can achieve that in a dynamic task
l
ah thanks!
155 Views