fix(docs): correct host field type from "str (password)" to "str (secret)"

The host field is marked as secret=True (hidden in UI) but is not a password.
The "(password)" label was misleading.
This commit is contained in:
Zamil Majdy
2026-04-02 14:36:12 +02:00
parent 7800af1835
commit e4f79261c1

View File

@@ -259,7 +259,7 @@ Supported database types: PostgreSQL, MySQL, and MSSQL.
| Input | Description | Type | Required |
|-------|-------------|------|----------|
| database_type | Database engine | "postgres" \| "mysql" \| "mssql" | No |
| host | Database hostname or IP address | str (password) | Yes |
| host | Database hostname or IP address | str (secret) | Yes |
| port | Database port (leave empty for default: PostgreSQL: 5432, MySQL: 3306, MSSQL: 1433) | int | No |
| database | Name of the database to connect to | str | Yes |
| query | SQL query to execute | str | Yes |