Skip to content

Commit

Permalink
Merge pull request #983 from solliancenet/skm-gateway-settings-080
Browse files Browse the repository at this point in the history
Gateway App Config Settings Validation Update
  • Loading branch information
ciprianjichici authored May 17, 2024
2 parents 94179a0 + 6b4b7fb commit 8fa666c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/dotnet/Configuration/Catalog/AppConfigurationCatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ public static class AppConfigurationCatalog

new(
key: AppConfigurationKeys.FoundationaLLM_APIs_GatewayAPI_APIUrl,
minimumVersion: "0.6.0",
minimumVersion: "0.7.0",
defaultValue: "",
description: "The URL of the Gateway API.",
keyVaultSecretName: "",
Expand All @@ -519,7 +519,7 @@ public static class AppConfigurationCatalog

new(
key: AppConfigurationKeys.FoundationaLLM_APIs_GatewayAPI_APIKey,
minimumVersion: "0.6.0",
minimumVersion: "0.7.0",
defaultValue: "Key Vault secret name: `foundationallm-apis-gatewayapi-apikey`",
description: "The API key of the Gateway API.",
keyVaultSecretName: KeyVaultSecretNames.FoundationaLLM_APIs_GatewayAPI_APIKey,
Expand All @@ -530,7 +530,7 @@ public static class AppConfigurationCatalog
new(
key: AppConfigurationKeys
.FoundationaLLM_APIs_GatewayAPI_AppInsightsConnectionString,
minimumVersion: "0.6.0",
minimumVersion: "0.7.0",
defaultValue: "Key Vault secret name: `foundationallm-app-insights-connection-string`",
description:
"The connection string to the Application Insights instance used by the vectorization API.",
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet/Configuration/Catalog/KeyVaultSecretsCatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public static class KeyVaultSecretsCatalog
),
new (
secretName: KeyVaultSecretNames.FoundationaLLM_APIs_GatewayAPI_APIKey,
minimumVersion: "0.6.0",
minimumVersion: "0.7.0",
description: "The API key of the Gateway API"
)
];
Expand Down

0 comments on commit 8fa666c

Please sign in to comment.