About managing environment variables in a module, Am I correct to understand that currently, having something like os.Getenv("my_env_var_already_exported") from a zenith module will work to read an already exported environment variable?
https://github.com/dagger/dagger/issues/6112#issuecomment-1813537423
The reason why I'm asking is that in this module https://github.com/Excoriate/daggerverse/blob/0c2495c0ca1fecce366734e0eb6a97c8ceaf3adb/iac-terragrunt/main.go#L51 I'm planning to use it from another module (a higher-level sort of CI module from where I'm planning to read some environment variables (from its code) by using, for example os.Getenv as I normally would do in the 'old' dagger way.
Right now callers can pass their environment variables to modules by just reading them and setting them to function arg values, e.g. w/ the cli: dagger call my-function --some-arg $SOME_ARG_VALUE T...