Reads the value of an environment variable from the host operating system.
env(name: string) -> string
Returns the documented result for the function signature.
connection "postgres" "main" { url = env("DATABASE_URL") }
An unset variable returns an empty string "".
""