We have a new SSIS project, our first in SQL 2016 (previous version was 2008). We decided that the environment parameters and the Integration Server will serve our purposes best so we're using Project Deployment Model.
All of our development is done locally on our laptops but we all connect to the same development database (hosted on an Azure Virtual machine). We have no trouble connecting to the database using SSMS or VS2k15 Server Explorer on our machines. The packages are retrieving data form there, everything is working great.
However, now we would like to deploy these up to our development server, test them, then deploy them to our staging server, test them, and finally deploy to production.
When I try to use the deployment wizard we get to the 'Select Destination' step. It does not seem to allow us to choose a server that isn't in our local network. There is no option to connect to a remote server and when I enter my remote server's url I get the following error...
Failed to connect to server [my server address]. Login failed. The Login is form an untrusted domain and cannot be used with Windows authentication (Error 18452).
There is no option given for SQL Authentication (which is what we use to connect everywhere else, including WITHIN the project I'm currently working on).
Is there really no way to deploy this remotely? Looking for a solution.