Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
  • Loading branch information
eerhardt authored and github-actions committed Oct 25, 2024
commit 2d777a4cd8d18d9f8630aed7c1d1ce5bd37356eb
4 changes: 2 additions & 2 deletions src/Aspire.Hosting.Azure.Sql/AzureSqlExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ private static void CreateSqlServer(

foreach (var databaseNames in databases)
{
var BicepIdentifier = Infrastructure.NormalizeBicepIdentifier(databaseNames.Key);
var bicepIdentifier = Infrastructure.NormalizeBicepIdentifier(databaseNames.Key);
var databaseName = databaseNames.Value;
var sqlDatabase = new SqlDatabase(BicepIdentifier)
var sqlDatabase = new SqlDatabase(bicepIdentifier)
{
Parent = sqlServer,
Name = databaseName
Expand Down