Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
BChaubey
Contributor
Contributor

How to implement key Vault in Talend

I want to implement key Vault in my Talend job. Could you please help me regarding the same.

Labels (3)
2 Replies
Anonymous
Not applicable

Hi

There is no connector is available for azure key vault now, you can vote this feature request.

 

Regards

Shong

HPeddireddy1672171879
Contributor
Contributor

Another way to connect Azure key vaults

 

Below are the steps required. The steps 1. and 2. are the ones to get secret id, client app id and tenant id for the API call (authorization call to get token).

 

  1. Register the application in Azure Active Directory (Azure AD), which maps an application object to a service principal. 
  2. Add that service principal to the access policies of the Azure Key Vault. 
  3. Request an access token by calling a REST API in Talend using a tRestClient component. 
  4. Call the Key Vault API to retrieve secrets, using that access token for authentication. 
  5. Retrieve the secret name and secret values and load then into the Talend Job using a tContextLoad component.