fix: reactive resume secrets

This commit is contained in:
2024-12-22 19:33:55 +00:00
parent fd4a1e8920
commit ec6e180c0a
2 changed files with 11 additions and 6 deletions

View File

@@ -10,6 +10,11 @@ code_server_password: HISTORY_PURGED_SECRET
tube_archivist_elasticsearch_password: HISTORY_PURGED_SECRET tube_archivist_elasticsearch_password: HISTORY_PURGED_SECRET
reactive_resume_postgres_password: HISTORY_PURGED_SECRET
reactive_resume_minio_password: HISTORY_PURGED_SECRET
reactive_resume_refresh_token: HISTORY_PURGED_SECRET
reactive_resume_access_token: HISTORY_PURGED_SECRET
icinga_api_user: "mobile" icinga_api_user: "mobile"
icinga_api_pass: "HISTORY_PURGED_SECRET" icinga_api_pass: "HISTORY_PURGED_SECRET"
icinga_api_url: "https://192.168.122.107:5665" icinga_api_url: "https://192.168.122.107:5665"

View File

@@ -12,13 +12,13 @@ services:
- resume - resume
environment: environment:
MINIO_ROOT_USER: minioadmin MINIO_ROOT_USER: minioadmin
MINIO_ROOT_PASSWORD: HISTORY_PURGED_SECRET MINIO_ROOT_PASSWORD: {{ reactive_resume_minio_password }}
db: db:
image: postgres:13 image: postgres:13
environment: environment:
- POSTGRES_USER=reactiveresume - POSTGRES_USER=reactiveresume
- POSTGRES_PASSWORD=HISTORY_PURGED_SECRET - POSTGRES_PASSWORD={{ reactive_resume_postgres_password }}
- POSTGRES_DB=reactiveresume - POSTGRES_DB=reactiveresume
restart: always restart: always
volumes: volumes:
@@ -65,11 +65,11 @@ services:
CHROME_URL: ws://chrome:3000 CHROME_URL: ws://chrome:3000
# -- Database (Postgres) -- # -- Database (Postgres) --
DATABASE_URL: postgresql://reactiveresume:HISTORY_PURGED_SECRET@db:5432/postgres DATABASE_URL: postgresql://reactiveresume:{{ reactive_resume_postgres_password }}@db:5432/postgres
# -- Auth -- # -- Auth --
ACCESS_TOKEN_SECRET: HISTORY_PURGED_SECRET ACCESS_TOKEN_SECRET: {{ reactive_resume_access_token }}
REFRESH_TOKEN_SECRET: HISTORY_PURGED_SECRET REFRESH_TOKEN_SECRET: {{ reactive_resume_refresh_token }}
# -- Emails -- # -- Emails --
MAIL_FROM: noreply@atlantishq.de MAIL_FROM: noreply@atlantishq.de
@@ -80,7 +80,7 @@ services:
STORAGE_PORT: 9000 STORAGE_PORT: 9000
STORAGE_BUCKET: default STORAGE_BUCKET: default
STORAGE_ACCESS_KEY: minioadmin STORAGE_ACCESS_KEY: minioadmin
STORAGE_SECRET_KEY: HISTORY_PURGED_SECRET STORAGE_SECRET_KEY: {{ reactive_resume_minio_password }}
# -- Cache (Redis) -- # -- Cache (Redis) --
REDIS_URL: redis://default:password@redis:6379 REDIS_URL: redis://default:password@redis:6379