Skip to content

Commit

Permalink
25270_add_env_values (#1676)
Browse files Browse the repository at this point in the history
  • Loading branch information
kzdev420 authored Jan 16, 2025
1 parent 58238aa commit ceb5e12
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions services/emailer/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ class Config: # pylint: disable=too-few-public-methods
ACCOUNT_SVC_CLIENT_SECRET = os.getenv("KEYCLOAK_CLIENT_SECRET")
ACCOUNT_SVC_TIMEOUT = os.getenv("KEYCLOAK_TIMEOUT")

ENTITY_SVC_AUTH_URL = os.getenv("KEYCLOAK_AUTH_TOKEN_URL")
ENTITY_SERVICE_ACCOUNT_CLIENT_ID = os.getenv("KEYCLOAK_CLIENT_ID")
ENTITY_SERVICE_ACCOUNT_CLIENT_SECRET = os.getenv("KEYCLOAK_CLIENT_SECRET")

NAME_REQUEST_URL = os.getenv("NAME_REQUEST_URL", "")
DECIDE_BUSINESS_URL = os.getenv("DECIDE_BUSINESS_URL", "")
BUSINESS_URL = os.getenv("BUSINESS_URL", "")
Expand Down

0 comments on commit ceb5e12

Please sign in to comment.