create a user with the required permission on MYSQL RDS.
CREATE USER 'devops'@'%' IDENTIFIED BY 'devOps_';
grants the required permissions.
GRANT SELECT, INSERT, UPDATE, CREATE, RELOAD, SHOW DATABASES ON . TO devops@'%' with grant option;
FLUSH PRIVILEGES;
verfiying DROP and ALTER permissons that we didn...
techopss.space1 min read