We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
privs: *.*:ALL
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
According to the docs MySQL 8 no longer reports ALL privileges as ALL but as the explicit list of granted privileges.
ALL
This causes the privilege parser to always detect a change in privileges
mysql_user
mysql version 8 and later
- name: create user1 state=present with a password mysql_user: <<: *mysql_params name: '{{ user_name_1 }}' password: '{{ user_password_1 }}' priv: '*.*:ALL' state: present
Result is not changed on subsequent runs
Result is always changed
The text was updated successfully, but these errors were encountered:
Duplicates #77
Sorry, something went wrong.
No branches or pull requests
SUMMARY
According to the docs MySQL 8 no longer reports
ALL
privileges asALL
but as the explicit list of granted privileges.This causes the privilege parser to always detect a change in privileges
ISSUE TYPE
COMPONENT NAME
mysql_user
ANSIBLE VERSION
CONFIGURATION
OS / ENVIRONMENT
mysql version 8 and later
STEPS TO REPRODUCE
EXPECTED RESULTS
Result is not changed on subsequent runs
ACTUAL RESULTS
Result is always changed
The text was updated successfully, but these errors were encountered: