https://dagster.io/ logo
n

Noah K

01/12/2021, 12:32 AM
I think it's for things that can come from the environment instead?
1
n

nate

01/12/2021, 12:38 AM
yes exactly -
StringSource
is a special config type that lets you either provide a literal string value:
Copy code
foo: "some string value"
or:
Copy code
foo:
  env: MY_STRING_VALUE_ENV_VAR
in which case Dagster will retrieve the value from the environment variable
MY_STRING_VALUE_ENV_VAR
👍 1
n

Noah K

01/12/2021, 12:38 AM
👍