Skip to content

Commit 76b793b

Browse files
author
Maddie Clayton
authored
Merge pull request #6782 from Azure/askew-patch-1
Removed -TemplateVersion from Example 1.
2 parents 83e9d15 + f872044 commit 76b793b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ResourceManager/Resources/Commands.Resources/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
## Current Release
2121
* Updated help files to include full parameter types and correct input/output types.
2222
* Fix piping scenario with `Set-AzureRmResource`
23+
* Fix example in New-AzureRmResourceGroupDeployment
2324

2425
## Version 6.2.1
2526
* Update Roleassignment and roledefinition cmdlets:

src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmResourceGroupDeployment.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,11 @@ Template parameter values that you enter at the command prompt take precedence o
9898

9999
### Example 1: Use a custom template and parameter file to create a deployment
100100
```
101-
PS C:\>New-AzureRmResourceGroupDeployment -ResourceGroupName "ContosoEngineering" -TemplateFile "D:\Azure\Templates\EngineeringSite.json" -TemplateParameterFile "D:\Azure\Templates\EngSiteParms.json" -TemplateVersion "2.1"
101+
PS C:\>New-AzureRmResourceGroupDeployment -ResourceGroupName "ContosoEngineering" -TemplateFile "D:\Azure\Templates\EngineeringSite.json" -TemplateParameterFile "D:\Azure\Templates\EngSiteParms.json"
102102
```
103103

104104
This command creates a new deployment by using a custom template and a template file on disk.
105105
The command uses the *TemplateFile* parameter to specify the template and the *TemplateParameterFile* parameter to specify a file that contains parameters and parameter values.
106-
It uses the *TemplateVersion* parameter to specify the version of the template.
107106

108107
## PARAMETERS
109108

0 commit comments

Comments
 (0)