From 1c417a299f617358b3148ff2fda8f295bd965acc Mon Sep 17 00:00:00 2001 From: Daniel Mikusa Date: Wed, 27 Apr 2022 13:50:31 -0400 Subject: [PATCH] Update README.md (#68) Add new PostgreSQL properties: sqlmode, sslrootcert, and options. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc179d1..30be365 100644 --- a/README.md +++ b/README.md @@ -206,9 +206,9 @@ Disable Property: `org.springframework.cloud.bindings.boot.postgresql.enable` | -------- | ------------------ | `spring.datasource.driver-class-name` | `org.postgresql.Driver` | `spring.datasource.password` | `{password}` -| `spring.datasource.url` | `{jdbc-url}` or if not set then `jdbc:postgres://{host}:{port}/{database}` +| `spring.datasource.url` | `{jdbc-url}` or if not set then `jdbc:postgres://{host}:{port}/{database}`. If a binding for `{sslmode}`, `{sslrootcert}`, or `{options}` are set, the value is appended as properties to the generated URL. | `spring.datasource.username` | `{username}` -| `spring.r2dbc.url` | `{r2dbc-url}` or if not set then `r2dbc:postgres://{host}:{port}/{database}` +| `spring.r2dbc.url` | `{r2dbc-url}` or if not set then `r2dbc:postgres://{host}:{port}/{database}`. If a binding for `{sslmode}`, `{sslrootcert}`, or `{options}` are set, the value is appended as properties to the generated URL. | `spring.r2dbc.password` | `{password}` | `spring.r2dbc.username` | `{username}`