-
Notifications
You must be signed in to change notification settings - Fork 78
Document password policy entropy source #992
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
base: vault/1.21.x
Are you sure you want to change the base?
Conversation
Vercel Previews Deployed
|
Broken Link CheckerNo broken links found! 🎉 |
- `entropy_source` `(string: "")` - Specifies the source of entropy | ||
(randomness) used to generate the passwords. The default ("") and | ||
"platform" source randomness from the platform RNG. "seal" (enterprise | ||
only) sources entropy from the entropy augmentation. |
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.
- `entropy_source` `(string: "")` - Specifies the source of entropy | |
(randomness) used to generate the passwords. The default ("") and | |
"platform" source randomness from the platform RNG. "seal" (enterprise | |
only) sources entropy from the entropy augmentation. | |
- `entropy_source` `(string: "platform")` - Specifies the source of entropy | |
(randomness) used to generate the passwords. Must be one of: | |
- `platform` - source randomness from the platform RNG. | |
- `seal` - source entropy from the entropy augmentation. <EnterpriseAlert inline="true" /> |
It sounds like the default is platform
?
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.
The default is unset, because existing policies won't have a value for it. We could change the readout code to produce platform, but it'd produce Terraform diffs.
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.
I like the formatting and ent fixes though
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.
Phrased it as "" means "default source"
System wide password policies now have a new config parameter,
entropy_source
which allows customers to pickseal
if they want entroyfrom entropy augmentation.