Ensure schema lines are less than 80 characters in length
This commit is contained in:
parent
a16fed8887
commit
463a133a63
1 changed files with 8 additions and 5 deletions
|
@ -558,11 +558,13 @@ map:
|
||||||
example: directory
|
example: directory
|
||||||
ssl_mode:
|
ssl_mode:
|
||||||
type: str
|
type: str
|
||||||
enum: ['disable', 'allow', 'prefer', 'require', 'verify-ca', 'verify-full']
|
enum: ['disable', 'allow', 'prefer',
|
||||||
|
'require', 'verify-ca', 'verify-full']
|
||||||
desc: |
|
desc: |
|
||||||
SSL mode to use to connect to the database server. One of "disable", "allow", "prefer",
|
SSL mode to use to connect to the database
|
||||||
"require", "verify-ca" or "verify-full". Defaults to "disable". See
|
server. One of "disable", "allow", "prefer",
|
||||||
https://www.postgresql.org/docs/current/libpq-ssl.html for details.
|
"require", "verify-ca" or "verify-full".
|
||||||
|
Defaults to "disable".
|
||||||
example: disable
|
example: disable
|
||||||
ssl_cert:
|
ssl_cert:
|
||||||
type: str
|
type: str
|
||||||
|
@ -577,7 +579,8 @@ map:
|
||||||
ssl_root_cert:
|
ssl_root_cert:
|
||||||
type: str
|
type: str
|
||||||
desc: |
|
desc: |
|
||||||
Path to a root certificate containing a list of trusted certificate authorities.
|
Path to a root certificate containing a list of
|
||||||
|
trusted certificate authorities.
|
||||||
example: "/root/.postgresql/root.crt"
|
example: "/root/.postgresql/root.crt"
|
||||||
ssl_crl:
|
ssl_crl:
|
||||||
type: str
|
type: str
|
||||||
|
|
Loading…
Reference in a new issue