From cc0bbbc58af5fc5f250ad8dc3c4c12645387ada5 Mon Sep 17 00:00:00 2001 From: Andres Torres Date: Wed, 25 Sep 2024 07:43:52 -0600 Subject: [PATCH] Fix typo RDS MySQL Schema (#5328) --- .../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 b51e56644c..5b5a3b633a 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_sername: str = Field( + db_username: str = Field( default="fides_service_user", title="DB 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 9a8cf2c92a..e18ca3c24d 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_sername": { + "db_username": { "default": "fides_service_user", "description": "The user account used to " "authenticate and access the "