mysql_user: Drop support for REQUIRESSL #121
Replies: 5 comments 3 replies
-
I don't feel empowered to discuss the topic not being a MySQL user even (would be pretty dangerous to make any breaking decisions based on my suggestions, among other thing) |
Beta Was this translation helpful? Give feedback.
-
I don't feel empoyered to discuss the topic not being a MySQL user even (would be pretty dangerous to make any breaking decisions based on my suggestions, among other thing) |
Beta Was this translation helpful? Give feedback.
-
I doubt most of sysadmins use REQUIRESSL with MySQL / MariaDB, even though it's recommended. I'm fine with this approach. |
Beta Was this translation helpful? Give feedback.
-
Besides that it's nice to finally get rid of the "SSL" (and replace it with the correct "TLS"), since TLS is around for almost 22 years now (as successor to the SSL protocols) and the last SSL protocol (SSLv3) has been deprecated almost 6 years ago (after being broken, and not being recommended for many more years). :) |
Beta Was this translation helpful? Give feedback.
-
I'll try to come up with a deprecation solution where we transparently transform the @felixfontein @bmalynovytch what do you guys think? |
Beta Was this translation helpful? Give feedback.
-
The
REQUIRESSL
privilege has been superseded by the more completetls_requires
option. The privilege has been kept for backwards compatibility, but in doing so it's introduced extra complexity in the module code and a number of idempotence issues.With PR #97 we're planning a release with breaking changes. Here I'm proposing using the opportunity to drop the support for the
REQUIRESSL
privilege in the same breaking release.Beta Was this translation helpful? Give feedback.
All reactions