github.com/yankunsam/loki/v2@v2.6.3-0.20220817130409-389df5235c27/docs/sources/configuration/examples/s3-expanded-config.yaml (about)

     1  # S3 configuration supports an expanded configuration. 
     2  # Either an `s3` endpoint URL can be used, or an expanded configuration can be used.
     3  
     4  schema_config:
     5    configs:
     6    - from: 2020-05-15
     7      store: aws
     8      object_store: s3
     9      schema: v11
    10      index:
    11        prefix: loki_
    12  storage_config:
    13    aws:
    14      bucketnames: bucket_name1, bucket_name2
    15      endpoint: s3.endpoint.com
    16      region: s3_region
    17      access_key_id: s3_access_key_id
    18      secret_access_key: s3_secret_access_key
    19      insecure: false
    20      sse_encryption: false
    21      http_config:
    22        idle_conn_timeout: 90s
    23        response_header_timeout: 0s
    24        insecure_skip_verify: false
    25      s3forcepathstyle: true
    26