Skip to content

Commit

Permalink
Fix null
Browse files Browse the repository at this point in the history
  • Loading branch information
stevesatdfe committed Nov 20, 2024
1 parent 320092f commit c169271
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static async Task Main(string[] args)
builder.Configuration.AddAzureKeyVault(
new Uri($"https://{configKeyVaultIdentifier}.vault.azure.net/"),
new DefaultAzureCredential(),
new SamplePrefixKeyVaultSecretManager(builder.Configuration["AppConfiguration:KeyVaultPrefix"]));
new SamplePrefixKeyVaultSecretManager(builder.Configuration["AppConfiguration:KeyVaultPrefix"]!));
}

builder.Services.RegisterApplicationComponents(builder.Configuration);
Expand Down

0 comments on commit c169271

Please sign in to comment.