diff options
| author | Daniel Rinehart <danielr@neophi.com> | 2026-01-21 22:10:21 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-21 19:10:21 -0800 |
| commit | 02ed32bd3b7a63f7cebb7234ce3e1bee6a3dd1a9 (patch) | |
| tree | 1d3b0aa1018dbd9d0e3cdfc2129d8f9c21432186 /crates | |
| parent | docker.mdx: config/ with initial uid:gid (diff) | |
| download | atuin-02ed32bd3b7a63f7cebb7234ce3e1bee6a3dd1a9.zip | |
Update regex for AWS Access Key ID pattern (#3088)
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/atuin-client/src/secrets.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/atuin-client/src/secrets.rs b/crates/atuin-client/src/secrets.rs index 25e8db9a..459e6238 100644 --- a/crates/atuin-client/src/secrets.rs +++ b/crates/atuin-client/src/secrets.rs @@ -12,7 +12,7 @@ pub enum TestValue<'a> { pub static SECRET_PATTERNS: &[(&str, &str, TestValue)] = &[ ( "AWS Access Key ID", - "AKIA[0-9A-Z]{16}", + "A[KS]IA[0-9A-Z]{16}", TestValue::Single("AKIAIOSFODNN7EXAMPLE"), ), ( |
