Vault rotates creds and also create a user but when it creates a new user then it can’t delete the old user These are my configuration username=“user” password=“password”
vault write database/roles/mysql-role
db_name=app1
creation_statements=“CREATE USER ‘{{name}}’@’%’ IDENTIFIED BY ‘{{password}}’;GRANT SELECT ON
app1.* TO ‘{{name}}’@’%’;”
“revocation_statements”: [
“DROP USER ‘{{name}}’@’%’;”
]