Skip to content

Commit 4db5c7c

Browse files
committed
fix StorageAccountSettings
get azure storage connection string from key vault Related to: #300
1 parent a694ff9 commit 4db5c7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/AzureOpenAIProxy.ApiApp/Configurations/StorageAccountSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ public class StorageAccountSettings
1313
/// <summary>
1414
/// Gets or sets the connection string.
1515
/// </summary>
16-
public string? ConnectionString { get; set; }
16+
public string? KeyVaultSecretName { get; set; }
1717
}

src/AzureOpenAIProxy.ApiApp/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"SecretName": "azure-openai-instances"
2929
},
3030
"StorageAccount": {
31-
"ConnectionString": ""
31+
"KeyVaultSecretName": "storage-connection-string"
3232
}
3333
},
3434

0 commit comments

Comments
 (0)