Daniil Ponizov
09/17/2021, 9:37 AMBastian Röhrig
09/17/2021, 9:46 AMflow.run_config = DockerRun(env={"SOME_VAR": "value"})
. This will make the env variable SOME_VAR available to your flow when it's running on a docker agent. I took that snippet from https://docs.prefect.io/orchestration/flow_config/run_configs.html#dockerrun .Daniil Ponizov
09/17/2021, 9:50 AMexport PREFECT__CONTEXT__SECRETS__SOME_VAR
it visible only from current terminal process and none of any agents cant see this variableKevin Kho
09/17/2021, 2:07 PM