Resource Factory is a universal approach to originating, refining, and rendering Markdown, HTML, type-safe SQL, or other assets that could comprise static sites or engineering artifacts.
GNU Affero General Public License v3.0
0
stars
3
forks
source link
Create env vars health capture with automated value sanitzation #81
We should have a *_SENSITIVE or *_SECRET or similar env vars naming convention like ABC_PASSWORD_SENSITIVE / ABC_PASSWORD_SECRET so that a regular expression like *_SECRET$ or similar can be used in loggers and console messages to remove those values.
[x] Sanitize env var values that use our *_SENSITIVE or *_SECRET conventions
[x] Automatically sanitize any env var value with password, pass, passwd, key or other similar combination. Make this configurable.
[x] Decide whether sanitization means removing the variable from logs or just sanitizing the values
We should have a
*_SENSITIVE
or*_SECRET
or similar env vars naming convention likeABC_PASSWORD_SENSITIVE
/ABC_PASSWORD_SECRET
so that a regular expression like*_SECRET$
or similar can be used in loggers and console messages to remove those values.*_SENSITIVE
or*_SECRET
conventionspassword
,pass
,passwd
,key
or other similar combination. Make this configurable.