skip to Main Content

Do we have any possibility to reset aws RDS master password using python script?
Any help would be appreciate

2

Answers


  1. You can use modify_db_instance() to change one or more database configuration parameters including MasterUserPassword.

    You might then need to reboot_db_instance() to apply the changes.

    Login or Signup to reply.
  2. Solution: In order to change RDS master password on aws you have pretty nice options to perform. Modify the instance/cluster options/attributes using:

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search