diff --git a/packages/datasources/mssql/index.cjs b/packages/datasources/mssql/index.cjs index 7360078080..1cb9de1a1d 100755 --- a/packages/datasources/mssql/index.cjs +++ b/packages/datasources/mssql/index.cjs @@ -101,7 +101,10 @@ const buildConfig = function (database) { trustServerCertificate: trust_server_certificate === 'true' || trust_server_certificate === true, encrypt: encrypt === 'true' || encrypt === true - } + }, + authentication: { + type: database.authenticationType + } }; if (database.authenticationType === 'default') {