-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: add doc for STEAMPIPE_DATABASE_SSL_PASSWORD env var (#177) * edits for STEAMPIPE_DATABASE_SSL_PASSWORD --------- Co-authored-by: Brahim Boukoufallah <[email protected]>
- Loading branch information
Showing
5 changed files
with
32 additions
and
8 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
21 changes: 21 additions & 0 deletions
21
docs/reference/env-vars/steampipe_database_ssl_password.md
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
title: STEAMPIPE_DATABASE_SSL_PASSWORD | ||
sidebar_label: STEAMPIPE_DATABASE_SSL_PASSWORD | ||
--- | ||
|
||
|
||
# STEAMPIPE_DATABASE_SSL_PASSWORD | ||
|
||
Sets the `server.key` passphrase. By default, Steampipe generates a certificate without a passphrase; you only need to set this variable if you use a custom certificate that is protected by a passphrase. | ||
|
||
To use a custom certificate with a passphrase: | ||
- `STEAMPIPE_DATABASE_SSL_PASSWORD` must be set when you start Steampipe. | ||
- The `server.key` content **must** contain [Proc-Type](https://datatracker.ietf.org/doc/html/rfc1421#section-4.6.1.1) and [DEK-Info](https://datatracker.ietf.org/doc/html/rfc1421#section-4.6.1.3) headers. | ||
|
||
## Usage | ||
Start the Steampipe service with a custom password: | ||
|
||
```bash | ||
export STEAMPIPE_DATABASE_SSL_PASSWORD=MyPassPhrase | ||
steampipe service start | ||
``` |
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