Multiple connections for same source with different tenants #31805
vishaldesai28
started this conversation in
General
Replies: 1 comment
-
You can maybe inject a field based on a specification parameter. spec:
connection_unique_name:
type: string
examples: ["conn_1", "conn_2"] and in your connector stream:
<...>
transformations:
- type: AddFields
fields:
- path: [ "connection_name" ]
value: { { config.get("connection_unique_name") } } |
Beta Was this translation helpful? Give feedback.
0 replies
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 built connector for API but want to use that source for multiple connections and each connection has different api. How can I create different connections and give each one unique name?
Beta Was this translation helpful? Give feedback.
All reactions