diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2023-08-19 12:28:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-19 12:28:39 +0100 |
| commit | 73bd8015c3ba50ceb5168a8b67bb1ac5d3b48dc1 (patch) | |
| tree | 0fe6dbe55a7dda6bd93a72fbfcb29e6f3993e95c /atuin-client/src/lib.rs | |
| parent | Update dependencies (#1181) (diff) | |
| download | atuin-73bd8015c3ba50ceb5168a8b67bb1ac5d3b48dc1.zip | |
Automatically filter out secrets (#1182)
I'd like to extend the regex list here very soon, but start off by
automatically filtering out secrets. Do not store them in history!
I've included regex for:
1. AWS key id
2. Github pat (old and new)
3. Slack oauth tokens (bot, user)
4. Slack webhooks
5. Stripe live/test keys
Will need updating after #806
Diffstat (limited to 'atuin-client/src/lib.rs')
| -rw-r--r-- | atuin-client/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/atuin-client/src/lib.rs b/atuin-client/src/lib.rs index 7ecfa894..05b69450 100644 --- a/atuin-client/src/lib.rs +++ b/atuin-client/src/lib.rs @@ -15,4 +15,5 @@ pub mod import; pub mod kv; pub mod ordering; pub mod record; +pub mod secrets; pub mod settings; |
