Skip to content

Commit

Permalink
Merge pull request duckdb#2375 from szarnyasg/conf-fixes
Browse files Browse the repository at this point in the history
Conf fixes
  • Loading branch information
szarnyasg authored Feb 29, 2024
2 parents 590f0ab + 59f583f commit deabf2b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions docs/configuration/overview.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
layout: docu
title: Configuration
redirect_from:
- /docs/configuration
---

DuckDB has a number of configuration options that can be used to change the behavior of the system.
Expand Down
4 changes: 2 additions & 2 deletions docs/configuration/secrets_manager.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ For each type, there are one or more "secret providers" that specify how the sec

### Creating a Secret

Secrets can be created using the [`CREATE SECRET` SQL statement](sql/statements/create_secret).
Secrets can be created using the [`CREATE SECRET` SQL statement](../sql/statements/create_secret).
Secrets can be **temporary** or **persistent**. Temporary secrets are used by default – and are stored in-memory for the life span of the DuckDB instance similar to how settings worked previously. Persistent secrets are stored in **unencrypted binary format** in the `~/.duckdb/stored_secrets` directory. On startup of DuckDB, persistent secrets are read from this directory and automatically loaded.

#### Secret Providers
Expand Down Expand Up @@ -62,7 +62,7 @@ This will write the secret (unencrypted) to the `~/.duckdb/stored_secrets` direc

### Deleting Secrets

Secrets can be deleted using the [`DROP SECRET` statement](sql/statements/create_secret#syntax-for-drop-secret), e.g.:
Secrets can be deleted using the [`DROP SECRET` statement](../sql/statements/create_secret#syntax-for-drop-secret), e.g.:

```sql
DROP PERSISTENT SECRET my_persistent_secret;
Expand Down

0 comments on commit deabf2b

Please sign in to comment.