diff --git a/.github/workflows/deploy_terraform.yml b/.github/workflows/deploy_terraform.yml index e5b7a2e3..342ed57b 100644 --- a/.github/workflows/deploy_terraform.yml +++ b/.github/workflows/deploy_terraform.yml @@ -141,6 +141,7 @@ jobs: dockerfile_path: backend/condition/handler/Dockerfile build_context: . build_args: | + JUNTE=best DEV_DB_HOST=${{ secrets.DEV_DB_HOST }} secrets: AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} diff --git a/backend/condition/handler/handler.py b/backend/condition/handler/handler.py index d689342a..1d1f285c 100644 --- a/backend/condition/handler/handler.py +++ b/backend/condition/handler/handler.py @@ -15,7 +15,11 @@ import os def handler(event: Mapping[str, Any], context: Any) -> None: - print("hello world", os.getenv("DEV_DB_HOST", "empty")) + print( + "hello world", + os.getenv("DEV_DB_HOST", "empty db"), + os.getenv("JUNTE", "empty junte"), + ) # uprn_lookup = UprnLookupS3( # bucket="", key="" # ) # TODO: replace with postgres implementation