mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-06 08:51:37 +01:00
fix: reactive resume secrets
This commit is contained in:
@@ -12,13 +12,13 @@ services:
|
||||
- resume
|
||||
environment:
|
||||
MINIO_ROOT_USER: minioadmin
|
||||
MINIO_ROOT_PASSWORD: HISTORY_PURGED_SECRET
|
||||
MINIO_ROOT_PASSWORD: {{ reactive_resume_minio_password }}
|
||||
|
||||
db:
|
||||
image: postgres:13
|
||||
environment:
|
||||
- POSTGRES_USER=reactiveresume
|
||||
- POSTGRES_PASSWORD=HISTORY_PURGED_SECRET
|
||||
- POSTGRES_PASSWORD={{ reactive_resume_postgres_password }}
|
||||
- POSTGRES_DB=reactiveresume
|
||||
restart: always
|
||||
volumes:
|
||||
@@ -65,11 +65,11 @@ services:
|
||||
CHROME_URL: ws://chrome:3000
|
||||
|
||||
# -- Database (Postgres) --
|
||||
DATABASE_URL: postgresql://reactiveresume:HISTORY_PURGED_SECRET@db:5432/postgres
|
||||
DATABASE_URL: postgresql://reactiveresume:{{ reactive_resume_postgres_password }}@db:5432/postgres
|
||||
|
||||
# -- Auth --
|
||||
ACCESS_TOKEN_SECRET: HISTORY_PURGED_SECRET
|
||||
REFRESH_TOKEN_SECRET: HISTORY_PURGED_SECRET
|
||||
ACCESS_TOKEN_SECRET: {{ reactive_resume_access_token }}
|
||||
REFRESH_TOKEN_SECRET: {{ reactive_resume_refresh_token }}
|
||||
|
||||
# -- Emails --
|
||||
MAIL_FROM: noreply@atlantishq.de
|
||||
@@ -80,7 +80,7 @@ services:
|
||||
STORAGE_PORT: 9000
|
||||
STORAGE_BUCKET: default
|
||||
STORAGE_ACCESS_KEY: minioadmin
|
||||
STORAGE_SECRET_KEY: HISTORY_PURGED_SECRET
|
||||
STORAGE_SECRET_KEY: {{ reactive_resume_minio_password }}
|
||||
|
||||
# -- Cache (Redis) --
|
||||
REDIS_URL: redis://default:password@redis:6379
|
||||
|
||||
Reference in New Issue
Block a user