Files
steampipe/pkg/constants/default_options.go
kai 7e4ecf3724 Update argument descriptions for --output --export, --snapshot-location
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
2022-11-07 10:37:34 +00:00

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
# }
`