Skip to content
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

fix links #197

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 1 addition & 2 deletions docs/guides/search-path.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Steampipe will add the aggregator before the other aws connections because `aws`
+-------------------------------------+
```

If you prefer, you can explicitly set the `search_path` in the [database options ](https://steampipe.io/docs/reference/config-files/database) in your `~/.steampipe/config/default.spc` file. Note that this is somewhat brittle because every time you install or uninstall a plugin, or add or remove a connection, you will need to update the file with the new `search_path`.
If you prefer, you can explicitly set the `search_path` in the [database options](/docs/reference/config-files/options#database-options) in your `~/.steampipe/config/default.spc` file. Note that this is somewhat brittle because every time you install or uninstall a plugin, or add or remove a connection, you will need to update the file with the new `search_path`.


## Search Path Prefix
Expand Down Expand Up @@ -144,7 +144,6 @@ steampipe check benchmark.cis_v140 --search-path-prefix aws_prod
- [.search_path meta-command](https://steampipe.io/docs/reference/dot-commands/search_path)
- [PostgreSQL Schema Search Path documentation](https://www.postgresql.org/docs/current/ddl-schemas.html#DDL-SCHEMAS-PATH)
- [database options](https://steampipe.io/docs/reference/config-files/database)
- [terminal options](https://steampipe.io/docs/reference/config-files/terminal)
- [cli reference - steampipe query](https://steampipe.io/docs/reference/cli/query)
- [cli reference - steampipe check](https://steampipe.io/docs/reference/cli/check)
- [cli reference - steampipe dashboard](https://steampipe.io/docs/reference/cli/dashboard)
2 changes: 1 addition & 1 deletion docs/reference/mod-resources/category.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ By default, folding is enabled with a threshold of `3`. This means that if ther

| Argument | Type | Optional? | Description
|-|-|-|-
| `icon` | String | Optional | An [icon]((reference/mod-resources/dashboard#icon)) to use when this category is folded. If not specified, the `category` icon will be used.
| `icon` | String | Optional | An [icon](reference/mod-resources/dashboard#icon) to use when this category is folded. If not specified, the `category` icon will be used.
| `title` | String | Optional | A plain text [title](/docs/reference/mod-resources/dashboard#title) to display for this category. If not specified, the `category` title will be used.
| `threshold` | Number | Optional | The number of items that should be displayed before folding. The default is `3`.

Expand Down
Loading