From 5007518ae9d62c60e684e377c3ba8f0e74068d00 Mon Sep 17 00:00:00 2001 From: Jorge Turrado Ferrero Date: Mon, 4 Oct 2021 10:21:28 +0200 Subject: [PATCH] Add documentation about the new values in trigger auth in MSSQL Scaler (#537) * Add documentation about the new values in trigger auth Signed-off-by: jorturfer * Improves documentation Co-authored-by: Tom Kerkhove Signed-off-by: Jorge Turrado --- content/docs/2.5/scalers/mssql.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/content/docs/2.5/scalers/mssql.md b/content/docs/2.5/scalers/mssql.md index 9ac715acc..510539f5e 100644 --- a/content/docs/2.5/scalers/mssql.md +++ b/content/docs/2.5/scalers/mssql.md @@ -51,7 +51,7 @@ To connect to the MSSQL instance, you can provide either: Or provide more detailed connection parameters explicitly (a connection string will be generated for you at runtime): - `host` - The hostname of the MSSQL instance endpoint. -- `port` - The port number of the MSSQL instance endpoint. The default for MSSQL is 1433. +- `port` - The port number of the MSSQL instance endpoint. (default 1433) - `database` - The name of the database to query. - `username` - The username credential for connecting to the MSSQL instance. - `passwordFromEnv` - The name of an environment variable containing the password credential for connecting to the MSSQL instance. @@ -80,6 +80,10 @@ As an alternative to using environment variables, you can authenticate with the **Password authentication:** +- `host` - The hostname of the MSSQL instance endpoint. +- `port` - The port number of the MSSQL instance endpoint. (default 1433) +- `database` - The name of the database to query. +- `username` - The username credential for connecting to the MSSQL instance. - `password` - The password credential for connecting to the MSSQL instance. ### Example