-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎉 Redshift Source/Destination SSL Support #6965
Conversation
vmaltsev seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
# Conflicts: # docs/integrations/destinations/redshift.md # docs/integrations/sources/redshift.md
/test connector=connectors/source-redshift
|
/test connector=connectors/destination-redshift
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
The following PR summary is actually very useful. Can you add it to the README
or the connector doc?
Note that we do NOT need to support certificate verification as part of this issue -- just encryption of data over the wire. In other words, the focus is protecting against eavesdropping, not man-in-the-middle attacks.
I blocked this PR because the connector version have not been bumped yet. Please also don't forget to publish the new connectors after bumping the versions.
airbyte-integrations/connectors/destination-redshift/src/main/resources/spec.json
Outdated
Show resolved
Hide resolved
airbyte-integrations/connectors/source-redshift/src/main/resources/spec.json
Outdated
Show resolved
Hide resolved
Redshift Source and Destination versions bumped |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you.
Please also publish the new connectors.
# Conflicts: # airbyte-config/init/src/main/resources/config/STANDARD_DESTINATION_DEFINITION/f7a7d195-377f-cf5b-70a5-be6b819019dc.json # airbyte-config/init/src/main/resources/seed/destination_definitions.yaml # airbyte-integrations/connectors/destination-redshift/Dockerfile # airbyte-integrations/connectors/destination-redshift/src/main/java/io/airbyte/integrations/destination/redshift/RedshiftCopyS3Destination.java # docs/integrations/destinations/redshift.md
/publish connector=connectors/source-redshift
|
/publish connector=connectors/destination-redshift
|
* add tls option to spec * Redshift Source add acceptance test * Redshift Destination add ssl field to spec * add RedshiftDestinationAcceptanceTestSSL * fix checkstyle * added changelog * update docs * bump versions of Redshift Source and Destination \ changed default tls to true Co-authored-by: vmaltsev <vitalii.maltsev@globallogic.com>
What
We want to support TLS encryption when connecting to the Redshift source/destination.
Note that we do NOT need to support certificate verification as part of this issue -- just encryption of data over the wire. In other words, the focus is protecting against eavesdropping, not man-in-the-middle attacks.
How
Added option to connect using SSL.
![red-src](https://user-images.githubusercontent.com/39538064/136967059-af291e0b-dc8e-4a1f-ab6f-26c78b0eb8fe.png)
![red-dest](https://user-images.githubusercontent.com/39538064/136967104-c2ba38cf-3d83-42ab-b1fe-73cd571b7307.png)
Recommended reading order
x.java
y.python
Pre-merge Checklist
Expand the relevant checklist and delete the others.
New Connector
Community member or Airbyter
airbyte_secret
./gradlew :airbyte-integrations:connectors:<name>:integrationTest
.README.md
bootstrap.md
. See description and examplesdocs/SUMMARY.md
docs/integrations/<source or destination>/<name>.md
including changelog. See changelog exampledocs/integrations/README.md
airbyte-integrations/builds.md
Airbyter
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
/test connector=connectors/<name>
command is passing./publish
command described hereUpdating a connector
Community member or Airbyter
airbyte_secret
./gradlew :airbyte-integrations:connectors:<name>:integrationTest
.README.md
bootstrap.md
. See description and examplesdocs/integrations/<source or destination>/<name>.md
including changelog. See changelog exampleAirbyter
If this is a community PR, the Airbyte engineer reviewing this PR is responsible for the below items.
/test connector=connectors/<name>
command is passing./publish
command described hereConnector Generator
-scaffold
in their name) have been updated with the latest scaffold by running./gradlew :airbyte-integrations:connector-templates:generator:testScaffoldTemplates
then checking in your changes