You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add config az func secret store extension (#333)
* feat: add config az func secret store extension
* pr-fix: use net6.0 az func
* pr-fix: use correct docker file
* pr-fix: use correct file paths in docker file
* pr-fix: update with token replacement in app settings
* pr-fix: correct az func routes
* pr-add: az func docker test to release build
/// Configure an <see cref="ISecretProvider"/> in the application with a given set of stores configured in the given <paramref name="configureSecretStores"/>.
34
+
/// </summary>
35
+
/// <param name="functionsHostBuilder">The builder to append the secret store configuration to.</param>
36
+
/// <param name="configureSecretStores">The customization of the different target secret store sources to include in the final <see cref="ISecretProvider"/>.</param>
37
+
/// <exception cref="ArgumentNullException">Thrown when the <paramref name="functionsHostBuilder"/> or <paramref name="configureSecretStores"/> is <c>null</c>.</exception>
Guard.NotNull(functionsHostBuilder,nameof(functionsHostBuilder),"Requires a functions host builder to add the secret store");
43
+
Guard.NotNull(configureSecretStores,nameof(configureSecretStores),"Requires a function to configure the secret store with potential secret providers");
0 commit comments