2b5d29ef67
Scripts, flows, apps, resources and resource types from the Windmill workspace. API token excluded via .gitignore (config/).
99 lines
2.0 KiB
YAML
99 lines
2.0 KiB
YAML
description: ''
|
|
format_extension: null
|
|
is_fileset: false
|
|
schema:
|
|
$schema: https://json-schema.org/draft/2020-12/schema
|
|
type: object
|
|
order:
|
|
- servers
|
|
- require_tls
|
|
- auth
|
|
properties:
|
|
auth:
|
|
type: object
|
|
description: ''
|
|
default:
|
|
label: NO_AUTH
|
|
oneOf:
|
|
- type: object
|
|
properties:
|
|
label:
|
|
type: string
|
|
enum:
|
|
- NO_AUTH
|
|
title: NO_AUTH
|
|
- type: object
|
|
order:
|
|
- token
|
|
properties:
|
|
label:
|
|
type: string
|
|
enum:
|
|
- TOKEN
|
|
token:
|
|
type: string
|
|
password: true
|
|
required:
|
|
- token
|
|
title: TOKEN
|
|
- type: object
|
|
properties:
|
|
label:
|
|
type: string
|
|
enum:
|
|
- USER_PASSWORD
|
|
password:
|
|
type: string
|
|
password: true
|
|
user:
|
|
type: string
|
|
required:
|
|
- user
|
|
- password
|
|
title: USER_PASSWORD
|
|
- type: object
|
|
order:
|
|
- nkey
|
|
properties:
|
|
label:
|
|
type: string
|
|
enum:
|
|
- NKEY
|
|
seed:
|
|
type: string
|
|
password: true
|
|
required:
|
|
- nkey
|
|
title: NKEY
|
|
- type: object
|
|
properties:
|
|
jwt:
|
|
type: string
|
|
password: true
|
|
label:
|
|
type: string
|
|
enum:
|
|
- JWT
|
|
seed:
|
|
type: string
|
|
password: true
|
|
required:
|
|
- jwt
|
|
- seed
|
|
title: JWT
|
|
title: Authentication
|
|
require_tls:
|
|
type: boolean
|
|
description: ''
|
|
default: false
|
|
title: Require TLS
|
|
servers:
|
|
type: array
|
|
description: ''
|
|
default:
|
|
- ''
|
|
items:
|
|
type: string
|
|
title: Servers
|
|
required: []
|