I think it's for things that can come from the env...
# announcements
n
I think it's for things that can come from the environment instead?
1
n
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
👍