Feature Request: Export JSON button in Connector Builder UI #67007
Unanswered
awilliamsOM1
asked this question in
Connector Builder
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to request an "Export JSON" button feature be added to the Connector Builder UI. This would work the exact same as the existing "Export YAML" button except it would export the connector manifest as JSON.
Exporting manifest JSON from the Connector Builder UI would be very useful for simplifying Terraform based workflows. My ideal workflow would be:
manifest.json
file.manifest.json
file gets passed into theairbyte_declarative_source_definition
terraform resource as themanifest
attribute.At this point sources and connections can be created by referencing the
airbyte_declarative_source_definition.id
.This workflow works great because the development and development testing can all happen within the Connector Builder UI. Then the resulting connector can quickly and easily be added to the Terraform IaC system to better control and manage the connectors.
Most of this ideal workflow works well today. The only problem step is number 4 because there is no "Export JSON" button. Instead I need to use the API to get the manifest as JSON. As a result, instead of clicking one button I need to do the following steps:
4a. Leave the UI to enter a terminal
4b. Use the API to get the workspace id
4c. Use the API to get the connector definition id from the list of connector definitions
4d. Use the API to get the connector definition manifest as json
Since JSON is already supported in the API, I hope adding an
EXPORT JSON
button would be doable in the Connector Builder UI.Thank you for your help.
Beta Was this translation helpful? Give feedback.
All reactions