I am using Azure SQL Database and want to use the MsSql Provider, but I am unable to find any documentation on how to create this specific connection. The connection string for Azure SQL is shown below, and may not fit the way Airflow expects connection strings to be from the documentation. Any idea on the best way to create/convert this connection?
Azure SQL
Server=tcp:myserver.database.windows.net,1433;Database=myDataBase;User ID=mylogin@myserver;Password=myPassword;Trusted_Connection=False;Encrypt=True;
Airflow Connection URI
my-conn-type://my-login:my-password@my-host:5432/my-schema?param1=val1¶m2=val2