options
Configuration options are defined using HCL options
blocks in one or more Steampipe config files. Steampipe will load ALL configuration files from ~/.steampipe/config
that have a .spc
extension. By default, Steampipe creates a ~/.steampipe/config/default.spc
file for setting options
.
Note that many of the options
settings can also be specified via other mechanisms, such as command line arguments, environment variables, etc. These settings are resolved in a standard order:
- Explicitly set in session (via a meta-command).
- Specified in command line argument.
- Set in an environment variable.
- Set in a configuration file
options
argument. - If not specified, a default value is used.
The following options
are currently supported:
Option Type | Description |
---|---|
database | Database options. |
general | General CLI options, such as auto-update options. |
plugin | Plugin options. |
Database Options
Database options are used to control database options, such as the IP address and port on which the database listens.
Supported options
Argument | Default | Values | Description |
---|---|---|---|
cache | true | true , false | Enable or disable query caching. This can also be set via the STEAMPIPE_CACHE environment variable. |
cache_max_size_mb | unlimited | an integer | The maximum total size of the query cache across all plugins. This can also be set via the STEAMPIPE_CACHE_MAX_SIZE_MB environment variable. |
cache_max_ttl | 300 | an integer | The maximum length of time to cache query results, in seconds. This can also be set via the STEAMPIPE_CACHE_MAX_TTL environment variable. |
listen | network | local , network | The network listen mode when Steampipe is started in service mode. Use network to listen on all IP addresses, or local to restrict to localhost. |
port | 9193 | any valid, open port number | The TCP port that Postgres will listen on. |
search_path | All connections, alphabetically | Comma separated string | Set an exact search path. Note that setting the search path in the database options sets it in the database; this setting will also be in effect when connecting to Steampipe from 3rd-party tools. See also: Using search_path to target connections and aggregators. |
search_path_prefix | none | Comma separated string | Move one or more connections or aggregators to the front of the search path. Note that setting the search path prefix in the database options sets in the database; this setting will also be in effect when connecting to Steampipe from 3rd-party tools. See also: Using search_path to target connections and aggregators. |
start_timeout | 30 | an integer | The maximum time (in seconds) to wait for the Postgres process to start accepting queries after it has been started. This can also be set via the STEAMPIPE_DATABASE_START_TIMEOUT environment variable. |
Example: Database Options
options "database" {cache = true # true, falsecache_max_ttl = 900 # max expiration (TTL) in secondscache_max_size_mb = 1024 # max total size of cache across all pluginsport = 9193 # any valid, open port numberlisten = "local" # local, networksearch_path_prefix = "aws,aws2,gcp,gcp2" # comma-separated string; an exact search_pathstart_timeout = 30 # maximum time (in seconds) to wait for the database to start up}
General options
General options apply generally to the Steampipe CLI.
Supported options
Argument | Default | Values | Description |
---|---|---|---|
log_level | warn | trace , debug , info , warn , error | Sets the output logging level. Standard log levels are supported. This can also be set via the STEAMPIPE_LOG_LEVEL environment variable. |
memory_max_mb | 1024 | Set a memory soft limit for the steampipe process. Set to 0 to disable the memory limit. This can also be set via the STEAMPIPE_MEMORY_MAX_MB environment variable. | |
telemetry | none | none , info | Set the telemetry level in Steampipe. This can also be set via the STEAMPIPE_TELEMETRY environment variable. See also: Telemetry. |
update_check | true | true , false | Enable or disable automatic update checking. This can also be set via the STEAMPIPE_UPDATE_CHECK environment variable. |
Example: General Options
options "general" {log_level = "warn" # trace, debug, info, warn, errormemory_max_mb = 512 # megabytestelemetry = "info" # info, noneupdate_check = true # true, false}
Plugin Options
Plugin options are used to set plugin default options, such as memory soft limits.
Supported options
Argument | Default | Values | Description |
---|---|---|---|
memory_max_mb | 1024 | Set a default memory soft limit for each plugin process. Note that each plugin can have its own memory_max_mb set in a plugin definition, and that value would override this default setting. Set to 0 to disable the memory limit. This can also be set via the STEAMPIPE_PLUGIN_MEMORY_MAX_MB environment variable. |
Example: Plugin Options
options "plugin" {memory_max_mb = 2048 # megabytes}