Moe
04/19/2024, 5:59 PMChris Guidry
04/22/2024, 1:14 PMDeployment
. When you create your deployment with prefect deploy
, you can pass either the --param
or --params
option on the CLI.
prefect deploy --param first=1 --param second=2 ...
or
prefect deploy --params '{"first": 1, "second": 2}' ...
These deployment parameters will be captured in the prefect.yaml
file in your project as well, and you can edit them there after the fact.Chris Guidry
04/22/2024, 1:15 PMMoe
04/22/2024, 2:47 PM