This might be an easy solution, but I cannot find how to accomplish this.
Our DB Server has IS installed for us to do SSIS development. Inside my SSIS Package, I need to make a connection to our SQL Server. Not a big deal if using SQL Login accounts, or even windows authentication. The problem I am having is as follows. Access to our servers is only granted through a TPAM user account, so when on the server, Windows credentials are passed as the TPAM user, which does not have access to our databases. All database access is granted through a different service account (domain/dbServiceAccount). In order for me to start building the SSIS package, I need to set a connection for SQL Server, which only has the options for "Windows Authentication" and "SQL Server Authentication".
How can I get a connection inside my SSIS package when the logged in user is not the one with database access?