gpt4 book ai didi

entity-framework - 具有 Entity Framework "DefaultConnection"应用程序设置的 Azure Key Vault

转载 作者:行者123 更新时间:2023-12-03 23:17:49 25 4
gpt4 key购买 nike

我正在尝试使用 Azure Key Vault 存储 Entity Framework 的 Web API 连接字符串。理想情况下,我希望避免将 Key Vault nuget 包与我的数据访问代码耦合。我的 dbContext 类有两个构造函数:

public MyDbContext() : base("DefaultConnection")
{ . . . }

public MyDbContext(string connectionString) : base(connectionString)
{ . . . }

我的代码使用无参数构造函数从 Web 配置获取连接字符串。在某些地方,我实例化了一个新的 MyDbContext 对象,这禁止使用注入(inject)的解决方案。

我采取的方法是使用连接字符串定位器在我的 dbcontext 上设置静态属性:

public interface IConnectionStringLocator
{ string Get(); }

public class DefaultConnectionStringLocator : IConnectionStringLocator
{
public string Get()
{
return "DefaultConnection";
}
}

public static IConnectionStringLocator ConnectionStringLocator { get; set; } =
new DefaultConnectionStringLocator();

我的 Web api 项目具有用于检索 key 保管库 secret 的 nuget 包。所以在我的 Global.asax 文件中我有这个:

protected void Application_Start()
{
MyDbContext.ConnectionStringLocator = new ConnectionStringLocator("DefaultConnection");
}

public class ConnectionStringLocator : IConnectionStringLocator
{
private readonly string _connectionStringName;

public ConnectionStringLocator(string connectionStringName)
{
this._connectionStringName = connectionStringName;
}
public string Get()
{
var keyVaultName = WebConfigurationManager.AppSettings.Get("KeyVaultName");
if (keyVaultName == "develop")
return _connectionStringName;
else
{
AzureServiceTokenProvider azureServiceTokenProvider = new AzureServiceTokenProvider();
var keyVaultClient =
new KeyVaultClient(
new KeyVaultClient.AuthenticationCallback(azureServiceTokenProvider.KeyVaultTokenCallback));
var defaultConnectionSecret =
keyVaultClient.GetSecretAsync($"https://{keyVaultName}.vault.azure.net/secrets/{this._connectionStringName}");

return defaultConnectionSecret.Result.Value;
}
}
}

我发布了这个并且它有效,但它“感觉”不正确。

另一种选择是关注这篇文章 https://blog.falafel.com/keeping-secrets-with-azure-key-vault/但这需要我将 KeyVault API 包与我的数据访问结合起来。

我正在寻找反馈和方向。我应该补充一点,我想使用 Key Vault 的原因是因为它允许我拥有 Azure 管理员,他们可以在线查看应用程序设置,而无需通过连接字符串访问 SQL 数据库。

具有新 MSI 实现的 KeyVault 资源:https://github.com/Azure-Samples/app-service-msi-keyvault-dotnet/

最佳答案

这就是我解决这个问题的方法,以防其他人偶然发现它。

创建了一个 ConfigurationManager 类,它首先尝试从 key 保管库获取值,但失败时它使用 WebConfigurationManager 读取应用设置。

    public static class ConfigurationManager
{
public static string KeyVaultName => WebConfigurationManager.AppSettings.Get("KeyVaultName");
private static readonly Dictionary<string, string> ConfigurationCache = new Dictionary<string, string>();
private static SecretBundle GetSecret(string secretName, string vaultName = null)
{
AzureServiceTokenProvider azureServiceTokenProvider = new AzureServiceTokenProvider();
var keyVaultClient =
new KeyVaultClient(
new KeyVaultClient.AuthenticationCallback(azureServiceTokenProvider.KeyVaultTokenCallback));
var secretUri = $"https://{vaultName ?? KeyVaultName}.vault.azure.net/secrets/{secretName}";
var secret = keyVaultClient.GetSecretAsync(secretUri);
return secret.Result;
}

public static string GetAppSettingValue(string secretName, string vaultName = null)
{
vaultName = vaultName ?? KeyVaultName;
string key = $"{vaultName}:{secretName}";
string value;

if (ConfigurationCache.TryGetValue(key, out value))
return value;

if (string.IsNullOrEmpty(vaultName) || vaultName == "develop")
{
value = WebConfigurationManager.AppSettings.Get(secretName);
ConfigurationCache.Add(key, value);
return value;
}

var secret = GetSecret(secretName);
value = secret.Value;
ConfigurationCache.Add(key, value);
return value;
}

public static void SetAppSettingValue(string secretName, string value, string vaultName = null)
{
vaultName = vaultName ?? KeyVaultName;
string key = $"{vaultName}:{secretName}";

if (ConfigurationCache.ContainsKey(key))
ConfigurationCache[key] = value;
else
{
WebConfigurationManager.AppSettings[key] = value;
ConfigurationCache.Add(key, value);
}


}
public static string GetConnectionStringValue(string secretName, string vaultName = null)
{
vaultName = vaultName ?? KeyVaultName;
string key = $"{vaultName}:{secretName}";
string value;

if (ConfigurationCache.TryGetValue(key, out value))
return value;

if (string.IsNullOrEmpty(vaultName) || vaultName == "develop")
{
value = WebConfigurationManager.ConnectionStrings[secretName].ConnectionString;
ConfigurationCache.Add(key, value);
return value;
}

var secret = GetSecret(secretName);
value = secret.Value;
ConfigurationCache.Add(key, value);
return value;
}
}

然后在我的 dbcontext 类中调用 Configurationmanager.GetConnectionStringValue("DefaultConnection")。

    public MyDbContext()
: base(ConfigurationManager.GetConnectionStringValue("DefaultConnection"))
{...}

关于entity-framework - 具有 Entity Framework "DefaultConnection"应用程序设置的 Azure Key Vault,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46332980/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com