3.6 KiB
Functions
The pg_tde
extension provides the following functions:
pg_tde_add_key_provider_file
Creates a new key provider for the database using a local file.
This function is intended for development, and stores the keys unencrypted in the specified data file.
SELECT pg_tde_add_key_provider_file('provider-name','/path/to/the/keyring/data.file');
All parameters can be either strings, or JSON objects referencing remote parameters.
pg_tde_add_key_provider_vault_v2
Creates a new key provider for the database using a remote HashiCorp Vault server.
The specified access parameters require permission to read and write keys at the location.
SELECT pg_tde_add_key_provider_vault_v2('provider-name',:'secret_token','url','mount','ca_path');
where:
url
is the URL of the Vault servermount
is the mount point where the keyring should store the keyssecret_token
is an access token with read and write access to the above mount point- [optional]
ca_path
is the path of the CA file used for SSL verification
All parameters can be either strings, or JSON objects referencing remote parameters.
pg_tde_set_master_key
Sets the master key for the database using the specified key provider.
The master key name is also used for constructing the name in the provider, for example on the remote Vault server.
You can use this function only to a master key. For changes in the master key, use the pg_tde_rotate_key
function.
SELECT pg_tde_set_master_key('name-of-the-master-key', 'provider-name');
pg_tde_rotate_key
Creates a new version of the specified master key, and updates the database so that it uses the new master key version.
It can be used without any parameters, which will just create a new version of the current database master key, using the same provider:
SELECT pg_tde_rotate_key();
Or alternatively it can be used with two parameters, specifying both a new key name and a new provider name:
SELECT pg_tde_rotate_key('name-of-the-new-master-key', 'name-of-the-new-provider');
In this case, both parameters support the NULL
value, which means that parameter won't be changed:
-- creates new master key on the same provider as before
SELECT pg_tde_rotate_key('name-of-the-new-master-key', NULL);
-- copies the current master key to a new provider
SELECT pg_tde_rotate_key(NULL, 'name-of-the-new-provider');
pg_tde_is_encrypted
Tells if a table is using the pg_tde
access method or not.
SELECT pg_tde_is_encrypted('table_name');
JSON objects as remote parameters
To allow storing secrets, or any other parameters in a more secure, external location, pg_tde
allows users to specify an external reference instead of hardcoded parameters.
Currently pg_tde
supports two external storage methods:
file
, which just stores the data in a simple file specified by apath
. The file should be readable to the postgres process.remote
, which uses a HTTP request to retrieve the parameter from the specifiedurl
.
As an example, to use the file provider with a file location specified by the remote
method,
use the following command:
SELECT pg_tde_add_key_provider_file(
'file-provider',
json_object( 'type' VALUE 'remote', 'url' VALUE 'http://localhost:8888/hello' )
);"
Or to use the file
method, use the following command:
SELECT pg_tde_add_key_provider_file(
'file-provider',
json_object( 'type' VALUE 'remote', 'path' VALUE '/tmp/datafile-location' )
);"
Any parameter specified to the add_key_provider
functions can be a json_object instead of the string,
similar to the above examples.