Trying to connect to a SQL Server database on Azure and use Azure Active Directory instead of using the default SQL authentication. Current options w/ my idea of using set domain but not sure what it'd be:
this.config = {
server: dbConnectionInfo.server,
port: dbConnectionInfo.port,
database: dbConnectionInfo.database,
user: dbConnectionInfo.user,
password: dbConnectionInfo.password,
// domain: dbConnectionInfo.domain, set domain?
options: {
trustServerCertificate: true,
encrypt: true,
useUTC: false
},
};
this.connectionPool = new sql.ConnectionPool(this.config);
this.connectionPoolPromise = this.connectionPool.connect();
Replace user and password with auth and options:
But you did not specify what type of AAD you have so I cannot be for sure.
https://learn.microsoft.com/en-us/sql/connect/ado-net/sql/azure-active-directory-authentication?view=sql-server-ver16#setting-azure-active-directory-authentication