Files
Windmill/s3.resource-type.yaml
Sebastian Serfling 2b5d29ef67 Initial commit: Windmill workspace sync
Scripts, flows, apps, resources and resource types from the Windmill workspace.
API token excluded via .gitignore (config/).
2026-04-24 09:06:07 +02:00

53 lines
1.3 KiB
YAML

description: An s3 bucket connection info
format_extension: null
is_fileset: false
schema:
$schema: https://json-schema.org/draft/2020-12/schema
type: object
order:
- endPoint
- region
- pathStyle
- bucket
- accessKey
- secretKey
- port
- useSSL
properties:
accessKey:
type: string
description: ''
default: ''
bucket:
type: string
description: ''
default: ''
endPoint:
type: string
description: The full URL of the S3 endpoint (e.g. https://s3.us-east-1.amazonaws.com)
default: ''
pathStyle:
type: boolean
description: <host>/<bucket>/<path> instead of <bucket>.<host>/<path>
default: true
port:
type: number
description: 'Deprecated: pass in a complete URL to `endPoint` instead,
including a port number if needed'
region:
type: string
description: AWS region (e.g. us-east-1). Used to auto-generate the S3 endpoint
URL when endPoint is not specified
default: ''
secretKey:
type: string
description: ''
default: ''
useSSL:
type: boolean
description: "Deprecated: pass in a complete URL to `endPoint` instead,
including 'https://' or 'http://'"
default: true
required:
- bucket