github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/steampipeconfig/testdata/connection_config/options_only/config/default.spc (about) 1 2 options "connection" { 3 cache = true # true, false 4 cache_ttl = 300 # expiration (TTL) in seconds 5 } 6 7 options "database" { 8 port = 9193 # any valid, open port number 9 listen = "local" # local (alias for localhost), network (alias for *), or a comma separated list of hosts and/or IP addresses 10 search_path = "aws,gcp,foo" 11 } 12 13 options "terminal" { 14 multi = false # true, false 15 output = "table" # json, csv, table, line 16 header = true # true, false 17 separator = "," # any single char 18 timing = false # true, false 19 search_path = "aws,gcp" 20 autocomplete = "true" 21 } 22 23 options "general" { 24 update_check = true # true, false 25 }