Skip to content

Commit

Permalink
Bugfix: +internal-postgres, spell out username and password.
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Aug 17, 2022
1 parent d635fc3 commit b983580
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hooks/blueprint
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fi

for want in $GENESIS_REQUESTED_FEATURES; do
case "$want" in
(external-postgres|internal-postgres) # Covered above
(external-postgres|+internal-postgres) # Covered above
true
;;
(cf-route-registrar)
Expand Down
2 changes: 1 addition & 1 deletion manifests/scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ instance_groups:
cf:
api: (( concat "https://api." params.cf.system_domain ))
postgres:
uri: (( concat "postgres://" meta.pg.user ":" meta.pg.pass "@" meta.pg.hostname ":" meta.pg.port "/" meta.pg.database "?sslmode=" meta.pg.sslmode ))
uri: (( concat "postgres://" meta.pg.username ":" meta.pg.password "@" meta.pg.hostname ":" meta.pg.port "/" meta.pg.database "?sslmode=" meta.pg.sslmode ))

- name: postgres
properties:
Expand Down

0 comments on commit b983580

Please sign in to comment.