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:
@@ -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
|
||||
Reference in New Issue
Block a user