generated from dbt-labs/dbt-oss-template
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add "Private" Environment Variables (#103)
* Add concept of private env vars * Add changelog entry * Keep private env-var prefix, per review
- Loading branch information
1 parent
80afe5e
commit 05c24e4
Showing
4 changed files
with
37 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Features | ||
body: Support environment variables which dbt can see but user code cannot. | ||
time: 2024-04-10T09:08:10.068999-04:00 | ||
custom: | ||
Author: peterallenwebb | ||
Issue: "103" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
# Prefix which identifies environment variables which contains secrets. | ||
SECRET_ENV_PREFIX = "DBT_ENV_SECRET_" | ||
|
||
# Prefix which identifies environment variables that should not be visible | ||
# via macros, flags, or other user-facing mechanisms. | ||
PRIVATE_ENV_PREFIX = "DBT_ENV_PRIVATE_" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters