-
Notifications
You must be signed in to change notification settings - Fork 23
Plane-EE: Add aes secret key #100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -204,4 +204,5 @@ env: | |||||
| mq_prefetch_count: 1 | ||||||
| request_interval: 400 | ||||||
| hmac_secret_key: '' | ||||||
| aes_secret_key: 'dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr' | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove Hardcoded Default Secret Embedding a static AES key in Suggest: - aes_secret_key: 'dsOdt7YrvxsTIFJ37pOaEVvLxN8KGBCr'
+ aes_secret_key: '' # Required: provide a secure AES keyOr leverage Helm functions (e.g., 📝 Committable suggestion
Suggested change
🧰 Tools🪛 Gitleaks (8.21.2)207-207: Detected a Generic API Key, potentially exposing access to various services and sensitive operations. (generic-api-key) |
||||||
| cors_allowed_origins: '' | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid Static Fallback for AES Secret
Similar to
SILO_HMAC_SECRET_KEY, the AES key should not default to a hardcoded constant. Use Helm’srandAlphaNumor require the user to supply it to ensure secrecy: