Database Setup
Amazon Aurora
-
Select RDS
-
Choose Create Database
-
Select “Easy Create” for “Amazon Aurora with MYSQL compatibility.”
-
Modify the RDS Security Group to allow TCP port 3306 access to the Control plane Instance security group only
-
Make a note of the writer instance database end-point, user, and password (It is needed later in the config below)
-
Create a new user with read-write privileges and avoid using an admin login.
-
# Sample command to create a user using MySQL CLI # Provide password on prompt mysql -h <SQL Host URL> -u <root|master|admin> -p
-