Skip to content

DOCS-functions-codeclean #343

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 16, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'TDE_REL_17_STABLE' into docs-functions-update
  • Loading branch information
Andriciuc committed May 16, 2025
commit 5997da9c3e53c28cde5868d62a7119ff94e65781
8 changes: 3 additions & 5 deletions contrib/pg_tde/documentation/docs/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,12 @@ SELECT pg_tde_add_database_key_provider_kmip(
'/path_to/client_cert.pem',
'/path_to/client_key.pem'
);

SELECT pg_tde_add_global_key_provider_kmip(
'provider-name',
'kmip-addr',
`port`,
'/path_to/server_certificate.pem',
'/path_to/client_cert.pem',
'/path_to/client_certificate.pem',
'/path_to/client_key.pem'
);
```
Expand All @@ -155,19 +154,18 @@ These functions change the KMIP provider:
```sql
SELECT pg_tde_change_database_key_provider_kmip(
'provider-name',
'kmip-addr',
'kmip-addr',
`port`,
'/path_to/server_certificate.pem',
'/path_to/client_cert.pem',
'/path_to/client_key.pem'
);

SELECT pg_tde_change_global_key_provider_kmip(
'provider-name',
'kmip-addr',
`port`,
'/path_to/server_certificate.pem',
'/path_to/client_cert.pem',
'/path_to/client_certificate.pem',
'/path_to/client_key.pem'
);
```
Expand Down
Loading
You are viewing a condensed version of this merge commit. You can view the full changes here.