Skip to content

Commit

Permalink
Reorder comment, still missing auth-api secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 committed May 2, 2024
1 parent ab97e24 commit 60e885d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions queue_services/account-mailer/src/account_mailer/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class _Config(): # pylint: disable=too-few-public-methods
# PUB/SUB
# SUBSCRIBES TO THIS TOPIC: account-mailer-dev
AUTH_SUB_AUDIENCE = os.getenv('AUTH_SUB_AUDIENCE')
VERIFY_PUBSUB_EMAIL = os.getenv('VERIFY_PUBSUB_EMAIL')

# Minio configuration values
MINIO_ENDPOINT = os.getenv('MINIO_ENDPOINT')
Expand Down
4 changes: 2 additions & 2 deletions queue_services/auth-queue/src/auth_queue/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ class _Config: # pylint: disable=too-few-public-methods
SQLALCHEMY_DATABASE_URI = f'postgresql://{DB_USER}:{DB_PASSWORD}@{DB_HOST}:{int(DB_PORT)}/{DB_NAME}'

# PUB/SUB
# SUBSCRIBES TO THESE TOPICS: auth-event-dev and namex-nr-state-dev
AUTH_SUB_AUDIENCE = os.getenv('AUTH_SUB_AUDIENCE')

VERIFY_PUBSUB_EMAIL = os.getenv('VERIFY_PUBSUB_EMAIL')
ACCOUNT_MAILER_TOPIC = os.getenv('ACCOUNT_MAILER_TOPIC', 'account-mailer-dev')
# SUBSCRIBES TO THESE TOPICS: auth-event-dev and namex-nr-state-dev

PAY_API_URL = os.getenv('PAY_API_URL') + os.getenv('PAY_API_VERSION')

Expand Down

0 comments on commit 60e885d

Please sign in to comment.