How to get connection string out of Azure KeyVault?

后端 未结 4 2080
花落未央
花落未央 2021-01-30 13:42

A hypothetical web-site currently connects using:

public SqlConnection CreateConnection()
{
   DbConnection connection = new SqlConnection();
   connection.Conne         


        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-30 14:41

    Others have already provided great answers with context about how to integrate with a web app or Azure Function, but here are the definitive references for getting started with the Key Vault secrets SDK.

    .NET

    Java

    JavaScript

    Python

提交回复
热议问题