Hello,
One of my customer is using StresmSets to access secrets saved in GCP.
The SDC setup and GCP secrets setup is correct. For example, I have used secrets like below successfully in JDBC producer stage’s credential tab and pipeline works fine, picks up latest version of the secret as expected.
${credential:get("gcp", "group@org", "dbuser?latest")}
${credential:get("gcp", "group@org", "dbpass?latest")}
Now, they want to read a secret for which a json file was uploaded as value, and they want to extract credential information from this json.
I tried to use credential:get in an Expression evaluator but it gave an error. (was planning to add more processors after this to extract userid and password from the json returned by credential:get)
How can i use secret like this in my StreamSets pipeline?
Thanks!