Skip to content

Commit 03aac1f

Browse files
committed
Updating based on some review feedback
1 parent a42d12d commit 03aac1f

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

src/ResourceManager/Resources/Commands.ResourceManager/Cmdlets/Microsoft.Azure.Commands.ResourceManager.Cmdlets.dll-Help.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,7 @@
904904
</command:details>
905905
<maml:description>
906906
<maml:para>This lists all the operations that were part of a deployment. It can be used for debugging deployment failures as it will help you identify and give more information about the exact operations that failed for a particular deployment. It can also give out the response and the request content for each deployment operation. This is the same information that you get from the deployment details on the portal. </maml:para>
907-
<maml:para>For getting the request and the response content, the setting will have to be enabled when submitting a deployment through New-AzureRmResourceGroupDeployment. log and expose secrets like passwords used in the resource property or listKeys operations that are then returned when you retrieve the deployment operations. For more details on this setting and how to enable it, please see the help for New-AzureRmResourceGroupDeployment</maml:para>
907+
<maml:para>For getting the request and the response content, the setting will have to be enabled when submitting a deployment through New-AzureRmResourceGroupDeployment. It can potentially log and expose secrets like passwords used in the resource property or listKeys operations that are then returned when you retrieve the deployment operations. For more details on this setting and how to enable it, please see the help for New-AzureRmResourceGroupDeployment or https://aka.ms/deploymentdebug </maml:para>
908908
</maml:description>
909909
<command:syntax>
910910
<command:syntaxItem>
@@ -1138,7 +1138,7 @@
11381138
</command:commandLines>
11391139
</command:example>
11401140
<command:example>
1141-
<maml:title>------- Example 2 -------</maml:title>
1141+
<maml:title>-------------------------- Example 1 --------------------------</maml:title>
11421142
<maml:introduction>
11431143
<maml:paragraph>PS C:\&gt;</maml:paragraph>
11441144
</maml:introduction>

src/ResourceManager/Resources/Commands.Resources/Microsoft.Azure.Commands.Resources.dll-Help.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4847,14 +4847,18 @@ Resources</dev:code>
48474847
</command:commandLines>
48484848
</command:example>
48494849
<command:example>
4850-
<maml:title>-------------------------- Example 2: Use a custom template uri and parameter uri with Incremental mode --------------------------</maml:title>
4850+
<maml:title>-------------------------- Example 2: Use a custom template uri and parameter uri with "Incremental" mode --------------------------</maml:title>
48514851
<maml:introduction>
48524852
<maml:paragraph>PS C:\&gt;</maml:paragraph>
48534853
</maml:introduction>
4854-
<dev:code>PS C:\&gt;New-AzureRmResourceGroupDeployment -Name testDeployment -ResourceGroupName ContosoEngineering -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vm-simple-windows/azuredeploy.json -TemplateParameterUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vm-simple-windows/azuredeploy.parameters.json -Mode Incremental -DeploymentDebugSetting All</dev:code>
4854+
<dev:code>PS C:\&gt;New-AzureRmResourceGroupDeployment -Name testDeployment -ResourceGroupName ContosoEngineering
4855+
-TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vm-simple-windows/azuredeploy.json
4856+
-TemplateParameterUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vm-simple-windows/azuredeploy.parameters.json
4857+
-Mode Incremental
4858+
-DeploymentDebugSetting All</dev:code>
48554859
<dev:remarks>
4856-
<maml:para>This command creates a new deployment by using a custom template and a template file on from the quickstart gallery on github. The command uses the TemplateUri parameter to specify the template and the TemplateParameterUri to specify a file of parameters and parameter values.</maml:para>
4857-
<maml:para>It also sets the Mode to be Incremental which will do an update to the deployment. If a resource already exists in the resource group it will skip that resource and deploy the next one. </maml:para>
4860+
<maml:para>This command creates a new deployment by using a custom template and a template file from the quickstart gallery on github. The command uses the TemplateUri parameter to specify the template and the TemplateParameterUri to specify the parameters.</maml:para>
4861+
<maml:para>It also sets the Mode to "Incremental" which will do an update to the deployment. If a resource already exists in the resource group it will skip that resource and deploy the next one. </maml:para>
48584862
<maml:para>It sets the DeploymentDebugLevel to All. This setting will log the request content and response content for each deployment operation associated with the deployment. This data can be later retrieved by using the Get-AzureRmResourceGroupDeploymentOperation cmdlet. </maml:para>
48594863
<maml:para />
48604864
<maml:para>

0 commit comments

Comments
 (0)