Summary
User is looking for a way to intentionally use an older version of Airbyte source connector in Airbyte open source to support TLS version 10 for SQL Server 2008.
Question
Hi
TLDR:
is there a way to intentionally use an older version of airbyte source connector in airbyte open source?
long form:
i have a SQL server 2008, with supported TLS version 10.
the SQL server source connector supports TLS versions 12 and 13, but not 10.
therefore i would like to try older versions of the connector, maybe they do support TLS10 / SQL server 2008.
This topic has been created from a Slack thread to give it more visibility.
It will be on Read-Only mode here. Click here if you want
to access the original thread.
Join the conversation on Slack
["older-version", "airbyte-source-connector", "tls-10", "sql-server-2008"]
Warning: When it comes to deprecated TLS version support, I’d really, really recommend trying to find a way to support the current version through OS/SQL updates or otherwise (e.g. connecting through a bastion server with current packages) because there’s a LOT of good reasons TLS 1.0 has been disabled.
With that said, you can downgrade a connector in the same way you can upgrade one: Go to Settings > Sources and find your source, then set the version number to the version you want to try (likely using the release notes for the connector as a guide). Hit upgrade and it’ll actually do a downgrade if the version is less than the current.
Keep in mind, this is global for the server you’re on. If you have other connections using it that you don’t want to downgrade, it may be better to add a copy of the connector by pulling it with a different name by going to New Connector > From Docker Image and using the same repo name but a different connection name (and tag number for the version you want)
But yeah, unless your database is completely non-sensitive data, would highly recommend not using TLS 1.0. :this-is-fine-fire:
<@U035912NS77> thanks alot