Skip to content

Commit

Permalink
fix broken link
Browse files Browse the repository at this point in the history
  • Loading branch information
karanpopat committed Apr 18, 2024
1 parent d592ccb commit 30ce0db
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/reference/config-files/workspace.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Any unset arguments will assume the default values.
| `mod_location` | The current working directory | Set the workspace working directory. <br /> <br /> Env: [STEAMPIPE_MOD_LOCATION](/docs/reference/env-vars/steampipe_mod_location) <br /> CLI: `--mod-location`
| `options` | | An options block to set command-specific options for this workspace. [Query](#steampipe-query-options), [check](#steampipe-check-options), and [dashboard](#steampipe-dashboard-options) options are supported.
| `pipes_host` | `pipes.turbot.com` | Set the Turbot Pipes host for connecting to Turbot Pipes workspace. <br /> <br /> Env: [PIPES_HOST](/docs/reference/env-vars/pipes_host) <br /> CLI: `--pipes-host`
| `pipes_token` | The token obtained by `steampipe login` | Set the Turbot Pipes authentication token for connecting to a Turbot Pipes workspace. This may be a token obtained by `steampipe login` or a user-generated [token](https://turbot.com/pipes/docs/profile#tokens). <br /> <br /> Env: [PIPES_TOKEN](/docs/reference/env-vars/pipes_TOKEN) <br /> CLI: `--pipes-token`
| `pipes_token` | The token obtained by `steampipe login` | Set the Turbot Pipes authentication token for connecting to a Turbot Pipes workspace. This may be a token obtained by `steampipe login` or a user-generated [token](https://turbot.com/pipes/docs/profile#tokens). <br /> <br /> Env: [PIPES_TOKEN](/docs/reference/env-vars/pipes_token) <br /> CLI: `--pipes-token`
| `progress` | `true` | Enable or disable progress information. <br /> <br />CLI: `--progress`
| `query_timeout` | `240` for controls, unlimited otherwise | The maximum time (in seconds) a query is allowed to run before it times out. <br /> <br /> Env: [STEAMPIPE_QUERY_TIMEOUT](/docs/reference/env-vars/steampipe_query_timeout) <br /> CLI: `--query_timeout`
| `search_path` | `public`, then alphabetical | A comma-separated list of connections to use as a custom search path for the control run. See also: [Using search_path to target connections and aggregators](https://steampipe.io/docs/guides/search-path). <br /> <br />CLI: `--search-path`
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/mod-resources/category.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ category "iam_policy" {
|-|-|-|-
| `color` | String | The matching color from the default theme for the data series index. | A [valid color value](reference/mod-resources/dashboard#color). This may be a named color, RGB or RGBA string, or a control status color. | The color to display for this category. |
| `href` | String | Optional | A url that the item should link to. The `href` may use a [jq template](reference/mod-resources/dashboard#jq-templates) to dynamically generate the link. |
| `icon` | String | Optional | An [icon]((reference/mod-resources/dashboard#icon)) to use for the elements with this category.
| `icon` | String | Optional | An [icon](reference/mod-resources/dashboard#icon) to use for the elements with this category.
| `title` | String | Optional | A plain text [title](/docs/reference/mod-resources/dashboard#title) to display for this category.
| `fold` | Block | Optional | A `fold` block for this category.

Expand Down
6 changes: 3 additions & 3 deletions docs/reference/mod-resources/image.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ Simple data structure:

Formal data structure:

| src | alt |
| ------------------------------------ | -------------- |
| https://steampipe.io/images/logo.png | Steampipe Logo |
| src | alt |
| ---------------------------------------------- | -------------- |
| https://steampipe.io/images/steampipe-logo.png | Steampipe Logo |


## More Examples
Expand Down
4 changes: 2 additions & 2 deletions docs/steampipe_postgres/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,13 @@ DROP EXTENSION IF EXISTS steampipe_postgres_aws CASCADE;
```

## Caching
By default, query results are cached for 5 minutes. You can change the duration with the [STEAMPIPE_CACHE_MAX_TTL](docs/reference/env-vars/steampipe_cache_max_ttl):
By default, query results are cached for 5 minutes. You can change the duration with the [STEAMPIPE_CACHE_MAX_TTL](/docs/reference/env-vars/steampipe_cache_max_ttl):

```bash
export STEAMPIPE_CACHE_MAX_TTL=600 # 10 minutes
```

or disable caching with the [STEAMPIPE_CACHE](docs/reference/env-vars/steampipe_cache):
or disable caching with the [STEAMPIPE_CACHE](/docs/reference/env-vars/steampipe_cache):
```bash
export STEAMPIPE_CACHE=false
```
Expand Down
4 changes: 2 additions & 2 deletions docs/steampipe_sqlite/configure.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,13 +95,13 @@ $ sqlite3 :memory: 'select * from pragma_compile_options()' | grep OMIT_LOAD_EXT


## Caching
By default, query results are cached for 5 minutes. You can change the duration with the [STEAMPIPE_CACHE_MAX_TTL](docs/reference/env-vars/steampipe_cache_max_ttl):
By default, query results are cached for 5 minutes. You can change the duration with the [STEAMPIPE_CACHE_MAX_TTL](/docs/reference/env-vars/steampipe_cache_max_ttl):

```bash
export STEAMPIPE_CACHE_MAX_TTL=600 # 10 minutes
```

or disable caching with the [STEAMPIPE_CACHE](docs/reference/env-vars/steampipe_cache):
or disable caching with the [STEAMPIPE_CACHE](/docs/reference/env-vars/steampipe_cache):
```bash
export STEAMPIPE_CACHE=false
```
Expand Down

0 comments on commit 30ce0db

Please sign in to comment.