05-02-2022 06:56 AM
Hi,
Is there any way to connect to Azure key vault and read access key information from there? I have requirement to that keys are going to be roated frequently and keys are going to be stored in Azure key vault. So I wanted to read recent access key for connecting to Azure storage.
Thanks,
Gowdhaman
05-17-2022 09:58 PM
Hello Gowdhaman,
You can follow the below steps.
Create a Rest OAuth2 Account with the Client ID and Secret and check the Header Authenticated Check Box. Mention your tenant OAuth2 End point and config details.
Grant Type - client_credentials.
Token endpoint Config:
scope: https://vault.azure.net/.default
Authorize the Account. It will redirect and once authorized you can check the Auto-refresh token as well.
Enable / check - Send Client Data As Basic Auth Header.
Use the REST Get snap to get the password from Azure Key Vault by providing the URL and account created above.
Thank You.