Skip to content

Commit

Permalink
remove final underscore (#110)
Browse files Browse the repository at this point in the history
* remove final underscore

* changelog
  • Loading branch information
emmyoop authored Apr 23, 2024
1 parent 7ee58a8 commit 87a7cc5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changes/unreleased/Under the Hood-20240423-080648.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Under the Hood
body: Remove the final underscore from secret and private environment variable constants.
time: 2024-04-23T08:06:48.857514-05:00
custom:
Author: emmyoop
Issue: "109"
4 changes: 2 additions & 2 deletions dbt_common/constants.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Prefix which identifies environment variables which contains secrets.
SECRET_ENV_PREFIX = "DBT_ENV_SECRET_"
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_"
PRIVATE_ENV_PREFIX = "DBT_ENV_PRIVATE"

0 comments on commit 87a7cc5

Please sign in to comment.