Files
Windmill/postgresql.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

42 lines
972 B
YAML

description: PostgreSQL connection
format_extension: null
is_fileset: false
schema:
$schema: https://json-schema.org/draft/2020-12/schema
type: object
properties:
dbname:
type: string
description: The database name
host:
type: string
description: The instance host
password:
type: string
description: The postgres users password
port:
type: integer
description: The instance port
root_certificate_pem:
type: string
description: The root certificate in pe format
default: ''
sslmode:
type: string
description: Most cloud databases (Heroku, AWS, Supabase, etc.) require SSL.
Self-hosted databases typically don't.
enum:
- disable
- allow
- prefer
- require
- verify-ca
- verify-full
user:
type: string
description: The postgres username
required:
- dbname
- user
- password