8000 Tde documentation updates for ga by Andriciuc · Pull Request #251 · percona/postgres · GitHub
[go: up one dir, main page]

Skip to content

Tde documentation updates for ga #251

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 31 commits into from
May 8, 2025
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9302f0f
small fixes to buttons added
Andriciuc May 5, 2025
7d4b514
smaller updates
Andriciuc May 6, 2025
6f1c3b8
smaller updates
Andriciuc May 6, 2025
12230fe
Update requirements.txt
Andriciuc May 6, 2025
31c0975
fixes part 1/2 from feedback review
Andriciuc May 6, 2025
dce23bd
updated features.md
Andriciuc May 7, 2025
1e61a45
removed compliance/regulations
Andriciuc May 7, 2025
f636e82
fix for PG-1587
Andriciuc May 7, 2025
45b470e
fixes for nastia 1/2 and for jz 2/2
Andriciuc May 7, 2025
104710e
all fixes accounted for
Andriciuc May 7, 2025
a39e568
Resolve merge conflicts
Andriciuc May 7, 2025
31bea87
fixes to titles
Andriciuc May 8, 2025
be6e6ef
fixed notes in features
Andriciuc May 8, 2025
7b76758
updated function parameters
Andriciuc May 8, 2025
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
updated function parameters
Updated from default true to false as per Commit f636e82 comments
  • Loading branch information
Andriciuc committed May 8, 2025
commit 7b76758e1149daddc053c8b9b23542dc13c2d228
8 changes: 4 additions & 4 deletions contrib/pg_tde/documentation/docs/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ SELECT pg_tde_set_server_key_using_global_key_provider('name-of-the-key','provid

The `ensure_new_key` parameter instructs the function how to handle a principal key during key rotation:

* If set to `true` (default), a new key must be unique.
* If set to `true`, a new key must be unique.
If the provider already stores a key by that name, the function returns an error.
* If set to `false`, an existing principal key may be reused.
* If set to `false` (default), an existing principal key may be reused.

### pg_tde_set_default_key_using_global_key_provider

Expand All @@ -239,9 +239,9 @@ SELECT pg_tde_set_default_key_using_global_key_provider('name-of-the-key','provi

The `ensure_new_key` parameter instructs the function how to handle a principal key during key rotation:

* If set to `true` (default), a new key must be unique.
* If set to `true`, a new key must be unique.
If the provider already stores a key by that name, the function returns an error.
* If set to `false`, an existing principal key may be reused.
* If set to `false` (default), an existing principal key may be reused.

## Encryption status check

Expand Down
0