Hey, I want to make sure I understand <this sectio...
# ask-metaflow
c
Hey, I want to make sure I understand this section correctly: When I deploy a Flow as a StepFunction every
Parameter
of that flow that has a default will be evaluated at deploy time (not execution time) and all the runs for that step function will have the same value for that parameter. For example, if I have a parameter:
Copy code
datetime_run = Parameter(
        "datetime_run",
        default=datetime.now()
)
For all runs of that step function this parameter will have the same value (the time of when the step function was deployed, not the time it was executed). Correct?
1