23 lines
726 B
YAML
23 lines
726 B
YAML
# Environment-gated example.
|
|
# Replace endpoint, bucket, prefix, and credential environment variable names
|
|
# with values for an S3-compatible service you control before running this config.
|
|
pipelines:
|
|
- id: example-s3-destination
|
|
source:
|
|
backend: local
|
|
path: examples/source-bundle
|
|
destinations:
|
|
- id: s3-archive
|
|
backend: s3
|
|
endpoint: https://s3.example.com
|
|
bucket: reports
|
|
prefix: distributor/archive
|
|
region: us-east-1
|
|
force_path_style: true
|
|
credentials:
|
|
access_key_id_env: DISTRIBUTOR_S3_ACCESS_KEY_ID
|
|
secret_access_key_env: DISTRIBUTOR_S3_SECRET_ACCESS_KEY
|
|
publish:
|
|
source: true
|
|
html: false
|