From 0c03e36b297bceeec241855d0d24c0d23574b487 Mon Sep 17 00:00:00 2001 From: jorturfer Date: Wed, 22 Sep 2021 00:07:04 +0200 Subject: [PATCH 1/2] Add documentation about the new values in trigger auth Signed-off-by: jorturfer --- content/docs/2.5/scalers/mssql.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/docs/2.5/scalers/mssql.md b/content/docs/2.5/scalers/mssql.md index 9ac715acc..4b6673304 100644 --- a/content/docs/2.5/scalers/mssql.md +++ b/content/docs/2.5/scalers/mssql.md @@ -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. The default for MSSQL is 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 From e6df3df065c01788aec124b7f0c5de03e58e20ef Mon Sep 17 00:00:00 2001 From: Jorge Turrado Date: Wed, 22 Sep 2021 08:55:02 +0200 Subject: [PATCH 2/2] Improves documentation Co-authored-by: Tom Kerkhove Signed-off-by: Jorge Turrado --- content/docs/2.5/scalers/mssql.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/docs/2.5/scalers/mssql.md b/content/docs/2.5/scalers/mssql.md index 4b6673304..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. @@ -81,7 +81,7 @@ 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. 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. - `password` - The password credential for connecting to the MSSQL instance.