mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-18 22:00:12 -05:00
Remove 'check' from dashboard arg descriptions Do not show "Output format defaulted to 'none'" message if sharing a snapshot remove query timeout from database options Fix snapshot creation crash when required inputs are not provided
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
package constants
|
|
|
|
// DefaultConnectionConfigContent is the content of the default connection config file, default.spc,
|
|
// that is created if it does not exist
|
|
const DefaultConnectionConfigContent = `
|
|
#
|
|
# For detailed descriptions, see the reference documentation
|
|
# at https://steampipe.io/docs/reference/cli-args
|
|
#
|
|
|
|
# options "connection" {
|
|
# cache = true # true, false
|
|
# cache_ttl = 300 # expiration (TTL) in seconds
|
|
# }
|
|
|
|
# options "database" {
|
|
# port = 9193 # any valid, open port number
|
|
# listen = "local" # local, network
|
|
# search_path = "" # comma-separated string
|
|
# }
|
|
|
|
# options "terminal" {
|
|
# multi = false # true, false
|
|
# output = "table" # json, csv, table, line
|
|
# header = true # true, false
|
|
# separator = "," # any single char
|
|
# timing = false # true, false
|
|
# search_path = "" # comma-separated string
|
|
# search_path_prefix = "" # comma-separated string
|
|
# watch = true # true, false
|
|
# autocomplete = true # true, false
|
|
# }
|
|
|
|
# options "general" {
|
|
# update_check = true # true, false
|
|
# }
|
|
`
|