Home > Software design >  Get Secret from Azure Key Vault using Perl
Get Secret from Azure Key Vault using Perl

Time:07-12

I have explored all related documentation provided by Microsoft and other related blogs to Azure key vault but have been unable to find how to get a Secret from Azure Key Vault using Perl scripting.

Does Microsoft support reading Secret value from Azure Key Vault using Perl?

CodePudding user response:

You can use a REST client such as REST::Client and call the Get Secret endpoint.

For Azure AD authentication you will need to use an Oauth2 library such as Net::OAuth2::AuthorizationServer.

For more information take a look to Authentication in Azure Key Vault.

Cheers!

  • Related