diff --git a/backend/condition/handler/handler.py b/backend/condition/handler/handler.py index 43b15536..ae6fbf80 100644 --- a/backend/condition/handler/handler.py +++ b/backend/condition/handler/handler.py @@ -4,6 +4,7 @@ import os # from io import BytesIO +from backend.app.config import get_settings from backend.condition.condition_trigger_request import ConditionTriggerRequest from backend.condition.lookups.uprn_lookup_s3 import UprnLookupS3 from backend.condition.processor import process_file @@ -31,6 +32,9 @@ def handler(event: Mapping[str, Any], context: Any) -> None: "hello region", os.getenv("AWS_REGION", "empty region"), ) + settings = get_settings() + print("hello db user", settings.DB_USERNAME) + # uprn_lookup = UprnLookupS3( # bucket="", key="" # ) # TODO: replace with postgres implementation