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