github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/steampipeconfig/testdata/connection_config/options_duplicate_block/config/default2.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  }
    11  
    12  options "terminal" {
    13    multi        = false   # true, false
    14    output       = "table" # json, csv, table, line
    15    header       = true    # true, false
    16    separator    = ","     # any single char
    17    timing       = false   # true, false
    18    search_path  = "aws,gcp"
    19    autocomplete = "true"
    20  }
    21  
    22  options "general" {
    23    update_check = true # true, false
    24  }