Skip to content

Commit

Permalink
Fix up variable name.
Browse files Browse the repository at this point in the history
  • Loading branch information
eerhardt committed Oct 27, 2024
1 parent ccb1355 commit 5ffb437
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -455,9 +455,9 @@ private static PostgreSqlFlexibleServer CreatePostgreSqlFlexibleServer(AzureReso

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

0 comments on commit 5ffb437

Please sign in to comment.