Skip to content

Create a public RDS MySQL DB as test environment for DB connection

Notifications You must be signed in to change notification settings

mariemssi/Test_Connect_To_Public_RDS-MySQL_DB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Testing Connection to a Public RDS MySQL DB

image

Please note: This is not the recommended approach for RDS databases due to security concerns

Provisioning Test Infrastructure with Terraform

  1. Clone the GitHub Repository: git clone <repository_url>

  2. Ensure that Terraform is installed on your local machine or Install it

  3. Set Up your AWS Credentials AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY.

  4. Initialize Terraform: terraform init

  5. Review Terraform Plan (Optional): terraform plan

    You can preview the changes Terraform will make to your infrastructure. For this, you should provide the Input Variables defined in variables.tf. You can define its values as default in the variables.tf file, or you can define it as parameters of terraform plan and terraform apply commands, or Terraform will prompt you to provide their values during the terraform apply process.

    😱 DB-USERNAME and DB-PASSWORD are secrets and It's important to note that using these methods for secrets is not a best practice in production environments. For handling secrets securely, consider using more robust methods available in Terraform, such as using external secret management systems or environment variables.

  6. Apply Terraform Changes: terraform apply

    Wait for Terraform to Complete, this process may take some time. Once complete, Terraform will display a summary of the changes made.

Testing the Connexion to the DB

With MySQL Workbench

  1. Define the needed parameters of the connexion like the screeshot below:

image

  1. Run SQL queries After successfully connecting

Destroying Test Infrastructure

Destroy Resources (Optional): terraform destroy

Once you have finished testing, it's important to destroy the test environment to avoid incurring unnecessary charges from AWS 😉.

Additional details can be found here

Please note that the environment presented here is designed solely for testing purposes and may not adhere to best practices.

About

Create a public RDS MySQL DB as test environment for DB connection

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages