-
Notifications
You must be signed in to change notification settings - Fork 4.5k
feat: [#22155] Optional SSL support for Redshift plugin #22844
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
base: release
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,13 +76,17 @@ | |
| { | ||
| "id": 3, | ||
| "sectionName": "SSL (optional)", | ||
| "hidden": true, | ||
| "children": [ | ||
| { | ||
| "label": "SSL Mode", | ||
| "configProperty": "datasourceConfiguration.connection.ssl.authType", | ||
| "controlType": "DROP_DOWN", | ||
| "initialValue": "DEFAULT", | ||
| "options": [ | ||
| { | ||
| "label": "Default", | ||
| "value": "DEFAULT" | ||
| }, | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you please add a small screen recording in the description showing how this looks and works ?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, will try to do it in a day or two. Currently facing issues due to lack of enough resources. I saw some of the similar plugins having this <label, value> in form.json |
||
| { | ||
| "label": "No SSL", | ||
| "value": "NO_SSL" | ||
|
|
@@ -102,14 +106,6 @@ | |
| { | ||
| "label": "Disable", | ||
| "value": "DISABLE" | ||
| }, | ||
| { | ||
| "label": "Verify-CA", | ||
| "value": "VERIFY_CA" | ||
| }, | ||
| { | ||
| "label": "Verify-Full", | ||
| "value": "VERIFY_FULL" | ||
| } | ||
| ] | ||
| }, | ||
|
|
||
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.
Can you please remove:
(1) "hidden": true
This should make the SSL dropdown visible on the Redshift datasource config page.
(2) Options that do not apply e.g.
verify-ca,verify-fullThere 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.
Fixed this @sumitsum