Skip to content

Commit 05eb1ac

Browse files
authored
Merge pull request Azure#8843 from cobeyerrett/patch-1
Update New-AzDeployment.md
2 parents 16bcc66 + d47d751 commit 05eb1ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Resources/Resources/help/New-AzDeployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ It uses the *TemplateVersion* parameter to specify the version of the template.
132132
```
133133
PS C:\> $TemplateFileText = [System.IO.File]::ReadAllText("D:\Azure\Templates\EngineeringSite.json")
134134
PS C:\> $TemplateObject = ConvertFrom-Json $TemplateFileText -AsHashtable
135-
PS C:\> New-AzDeploymeny -Location "West US" -TemplateObject $TemplateObject -TemplateParameterFile "D:\Azure\Templates\EngSiteParams.json" -TemplateVersion "2.1"
135+
PS C:\> New-AzDeployment -Location "West US" -TemplateObject $TemplateObject -TemplateParameterFile "D:\Azure\Templates\EngSiteParams.json" -TemplateVersion "2.1"
136136
```
137137

138138
This command creates a new deployment at the current subscription scope by using a custom template and a template file on disk that has been converted to an in-memory hashtable.

0 commit comments

Comments
 (0)