Initial commit: Windmill workspace sync

Scripts, flows, apps, resources and resource types from the Windmill workspace.
API token excluded via .gitignore (config/).
This commit is contained in:
Sebastian Serfling
2026-04-24 09:06:07 +02:00
commit 2b5d29ef67
302 changed files with 9229 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
description: AWS Bedrock resource type
format_extension: null
is_fileset: false
schema:
$schema: https://json-schema.org/draft/2020-12/schema
type: object
order:
- region
- apiKey
properties:
apiKey:
type: string
description: AWS bedrock API key (simplest, no need for awsAccessKeyId and
awsSecretAccessKey)
default: ''
nullable: true
password: true
awsAccessKeyId:
type: string
description: AWS IAM access key ID (alternative to apiKey)
default: ''
nullable: true
password: true
awsSecretAccessKey:
type: string
description: AWS IAM secret access key (alternative to apiKey)
default: ''
nullable: true
password: true
awsSessionToken:
type: string
description: AWS IAM session token (alternative to apiKey). You will need to
refresh this token periodically.
default: ''
nullable: true
password: true
region:
type: string
description: AWS Bedrock region (e.g., us-east-1)
default: ''
nullable: false
required:
- region