secrets.get() function
Examples
Populate sensitive credentials with secrets
import "influxdata/influxdb/secrets"
password = secrets.get(key: "POSTGRES_PASSWORD")
sql.from(
dataSourceName: "postgresql://${username}:${password}@localhost",
query:"SELECT * FROM example-table"