Hi, is there a way to intialize Variables from pre...
# ask-community
i
Hi, is there a way to intialize Variables from prefect.yaml file?
n
since steps in
prefect.yaml
are just qualified function names, you'd be free to write your own
build
step something like
Copy code
build:
  your_module.create_variables:
    arg1: foo
    arg2: bar
similar to this example
i
Ok, understood, thank you!
n
sure thing! or instead, you could use
run_shell_script
and the
prefect variable get/set
commands