From b622b1761a3c2a6f2c038cd261bce3e3c7c7ae3c Mon Sep 17 00:00:00 2001 From: Andres Torres Date: Wed, 25 Sep 2024 07:15:14 -0600 Subject: [PATCH] PROD-2654 - MySQL on RDS as a detection/discovery source (#5275) --- .../connection_configuration/connection_secrets_rds_mysql.py | 2 +- .../ops/api/v1/endpoints/test_connection_template_endpoints.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fides/api/schemas/connection_configuration/connection_secrets_rds_mysql.py b/src/fides/api/schemas/connection_configuration/connection_secrets_rds_mysql.py index 59fb064308..e3b3460009 100644 --- a/src/fides/api/schemas/connection_configuration/connection_secrets_rds_mysql.py +++ b/src/fides/api/schemas/connection_configuration/connection_secrets_rds_mysql.py @@ -11,7 +11,7 @@ class RDSMySQLSchema(BaseAWSSchema): Schema to validate the secrets needed to connect to a RDS MySQL Database """ - db_username: str = Field( + db_sername: str = Field( default="fides_service_user", title="Username", description="The user account used to authenticate and access the databases.", diff --git a/tests/ops/api/v1/endpoints/test_connection_template_endpoints.py b/tests/ops/api/v1/endpoints/test_connection_template_endpoints.py index d3225dbe09..2a72016b7b 100644 --- a/tests/ops/api/v1/endpoints/test_connection_template_endpoints.py +++ b/tests/ops/api/v1/endpoints/test_connection_template_endpoints.py @@ -1356,7 +1356,7 @@ def test_get_connection_secret_schema_rds( "title": "Region", "type": "string", }, - "db_username": { + "db_sername": { "default": "fides_service_user", "description": "The user account used to " "authenticate and access the "