Use legal database-user name

This commit is contained in:
Jack Jackson 2024-06-27 09:43:05 -07:00
parent 89511e3747
commit e879b0ba05

View File

@ -5,7 +5,7 @@ image:
extraEnv:
- name: DATABASE_URL
value: postgresql://user:pass@edh-elo-postgresql/postgres
value: postgresql://db_user:pass@edh-elo-postgresql/postgres
postgresql:
primary:
@ -15,7 +15,7 @@ postgresql:
# TODO - switch to using a secret (and update `extraEnv`, above)
scripts:
psql.sql: |
CREATE USER user WITH PASSWORD 'pass';
CREATE USER db_user WITH PASSWORD 'pass';
############