-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support setting ssl client certificate information and ssl root certi…
…ficate independently (#578) ### What We want to be able to set the ssl root certificate without setting the ssl client certificate information. We want to be able to set the two independently. ### How - Split the SslClientInfo to two Optionals and rename to SslInfo. Now they can be set independently. --------- Co-authored-by: Samir Talwar <[email protected]>
- Loading branch information
1 parent
2c9a74c
commit edce403
Showing
5 changed files
with
58 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,14 @@ supportedEnvironmentVariables: | |
description: The PostgreSQL connection URI | ||
defaultValue: postgresql://read_only_user:[email protected]:5432/v3-docs-sample-app | ||
- name: CLIENT_CERT | ||
description: The SSL client certificate | ||
description: The SSL client certificate (Optional) | ||
defaultValue: '' | ||
- name: CLIENT_KEY | ||
description: The SSL client key | ||
description: The SSL client key (Optional) | ||
defaultValue: '' | ||
- name: ROOT_CERT | ||
description: The SSL root certificate | ||
description: The SSL root certificate (Optional) | ||
defaultValue: '' | ||
commands: | ||
update: hasura-ndc-postgres update | ||
cliPlugin: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,11 +10,14 @@ supportedEnvironmentVariables: | |
description: The PostgreSQL connection URI | ||
defaultValue: postgresql://read_only_user:[email protected]:5432/v3-docs-sample-app | ||
- name: CLIENT_CERT | ||
description: The SSL client certificate | ||
description: The SSL client certificate (Optional) | ||
defaultValue: '' | ||
- name: CLIENT_KEY | ||
description: The SSL client key | ||
description: The SSL client key (Optional) | ||
defaultValue: '' | ||
- name: ROOT_CERT | ||
description: The SSL root certificate | ||
description: The SSL root certificate (Optional) | ||
defaultValue: '' | ||
commands: | ||
update: hasura-ndc-postgres update | ||
cliPlugin: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters