From d131152bd5f7a56e6dbc97df48b52070287bde97 Mon Sep 17 00:00:00 2001 From: Jared Holgate Date: Thu, 21 Mar 2024 16:20:09 +0000 Subject: [PATCH] Fix bug in bicep path (#109) # Pull Request ## Issue N/A ## Description Fix an incorrect path ## Testing You can see the Bicep tests passing here: https://github.com/Azure/accelerator-bootstrap-modules/actions/runs/8375595350 ## License By submitting this pull request, I confirm that my contribution is made under the terms of the projects associated license. --- src/ALZ/Private/Legacy-Bicep/New-ALZEnvironmentBicep.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ALZ/Private/Legacy-Bicep/New-ALZEnvironmentBicep.ps1 b/src/ALZ/Private/Legacy-Bicep/New-ALZEnvironmentBicep.ps1 index 1cf3a060..2fc60820 100644 --- a/src/ALZ/Private/Legacy-Bicep/New-ALZEnvironmentBicep.ps1 +++ b/src/ALZ/Private/Legacy-Bicep/New-ALZEnvironmentBicep.ps1 @@ -42,7 +42,7 @@ function New-ALZEnvironmentBicep { Set-ComputedConfiguration -configuration $configuration | Out-String | Write-Verbose Edit-ALZConfigurationFilesInPlace -alzEnvironmentDestination $targetDirectory -configuration $configuration | Out-String | Write-Verbose Build-ALZDeploymentEnvFile -configuration $configuration -Destination $targetDirectory -version $upstreamReleaseVersion | Out-String | Write-Verbose - Add-AvailabilityZonesBicepParameter -alzEnvironmentDestination $alzEnvironmentDestination -configFile $bicepConfig| Out-String | Write-Verbose + Add-AvailabilityZonesBicepParameter -alzEnvironmentDestination $targetDirectory -configFile $bicepConfig | Out-String | Write-Verbose if($local) { $isGitRepo = Test-ALZGitRepository -alzEnvironmentDestination $targetDirectory -autoApprove:$autoApprove.IsPresent