i have one website which i have posted on azure webapp and that website is connected with SQL database so we are try to setup that database connection string password directly attach with azure key vault so we don't have any idea how can we add that function any one please help me on this.
Follow my Connection string with DB login code
{
"Logging": {
"LoginLevel": {
"Default": "Warning"
}
},
"AllowedHosts": "test",
"connectionStrings": {
"demoDBConnection": "Data Source = test-QA-sqldemo.public.demo.database.windows.net,3342; Initial Catalog = demo;persist security info=False; user id=sql-demo;password=test;timeout=30"
}
}
so how can i retrieve the password in this connection string using azure-key vault so we can remove this sql password and setup keyvault method...