-
Notifications
You must be signed in to change notification settings - Fork 99
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
Allows special characters for db password #325
Conversation
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.
Thank you, I only have a minor non blocking question. 🚀
modules/database/main.tf
Outdated
length = 128 | ||
special = true | ||
min_special = 4 | ||
override_special = "+(!]&;$)" |
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.
❓ Could you please share the reason behind these specific characters for override_special
? This looks like a learning opportunity to me.
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 override_special setting indicates exactly which special characters to include in the random string that is generated (for example, there is no "@" symbol and so that special char will not be included in the output string).
Closing for now. |
Background
Adds support for specified special characters in db password.