eashi / hide-my-secrets

A VSCode extension to hide secrets in YAML and JSON files.
8 stars 1 forks source link

More keys by default #13

Open clemlesne opened 6 months ago

clemlesne commented 6 months ago

I would add those keys to enhance the default settings:

{
  "hide-my-secrets.secretKeys": [
        "access_key",
        "api_key",
        "aws_secret_access_key",
        "azure_client_secret",
        "client_secret",
        "connection_string",
        "connectionstring",
        "google_client_secret",
        "jwt_token",
        "oauth_token",
        "password",
        "private_key",
        "secret_key",
        "secret_token",
        "token"
    ]
}
eashi commented 6 months ago

hi @clemlesne,

Thanks a lot for the suggestion. I will add them and let you now :).

clemlesne commented 6 months ago

After reflexion, from my standpoint, a regex batch would be more appropriated. See: https://github.com/eashi/hide-my-secrets/issues/14.

I propose to close this issue in favour of #14.