Azure / ALZ-PowerShell-Module

The Azure Landing Zones Accelerators PowerShell module
https://www.powershellgallery.com/packages/ALZ/
MIT License
72 stars 36 forks source link

Incorrect PowerShell commands on [User Guide] Quick Start Phase 2 GitHub wiki page #129

Closed jon-krueger closed 2 months ago

jon-krueger commented 3 months ago

Under sections 2.2.2.1 GitHub with Bicep and 2.2.2.2 GitHub with Terraform the PowerShell command to create the output directory is incorrect.

New-Item c:\accelerator\output creates a file with the name output. The PowerShell command should be New-Item -ItemType "directory" c:\accelerator\output

or for Linux

New-Item -ItemType "directory" ~/accelerator/output