<!--- Verify first that your feature was not already discussed on GitHub --> <!--- Complete *all* sections as described, this form is processed automatically --> ##### SUMMARY <!--- Describe the new feature/improvement briefly below --> Implement the feature [Failed-Login Tracking and Temporary Account Locking](https://dev.mysql.com/doc/refman/8.0/en/password-management.html#failed-login-tracking) ##### ISSUE TYPE - Feature Idea ##### COMPONENT NAME <!--- Write the short name of the module, plugin, task or feature below, use your best guess if unsure --> mysql_user module ##### ADDITIONAL INFORMATION <!--- Describe how the feature would be used, why it is needed and what it would solve --> It will improve the security and avoid some kind of attacks. <!--- Paste example playbooks or commands between quotes below --> ```yaml - name: Lock bob's account when 4 consecutive login attempt failed for unbounded time community.mysql.mysql_user: name: bob account_locking: FAILED_LOGIN_ATTEMPTS: 4 PASSWORD_LOCK_TIME: UNBOUNDED ``` <!--- HINT: You can also paste gist.github.com links for larger files -->