You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Tasks/DeployAzureResourceGroup/Strings/resources.resjson/en-US/resources.resjson
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,13 @@
19
19
"loc.input.help.cloudService": "Provide the name of the cloud service.",
20
20
"loc.input.label.location": "Location",
21
21
"loc.input.help.location": "Location for deploying the resource group. If the resource group already exists in the subscription, then this value will be ignored.",
"loc.input.help.deploymentMode": "Specify the deployment mode for Azure Resource Manager template.",
24
22
"loc.input.label.csmFile": "Template",
25
23
"loc.input.help.csmFile": "Specify the path to the Azure Resource Manager template. For more information about the templates see https://aka.ms/azuretemplates. To get started immediately use template https://aka.ms/sampletemplate.",
"loc.input.help.deploymentMode": "Incremental mode handles deployments as incremental updates to the resource group . It leaves unchanged resources that exist in the resource group but are not specified in the template. \n\n Complete mode deletes resources that are not in your template. \n\n Validate mode enables you to find problems with the template before creating actual resources. \n\n By default, Incremental mode is used.",
29
29
"loc.input.help.overrideParameters": "Specify the template parameters to override like, <br>–storageName fabrikam –adminUsername $(vmusername) -adminPassword (ConvertTo-SecureString -String '$(password)' -AsPlainText -Force) –azureKeyVaultName $(fabrikamFibre).",
"loc.input.help.enableDeploymentPrerequisitesForCreate": "Enabling this option configures Windows Remote Management (WinRM) listener over HTTPS protocol on port 5986, using a self-signed certificate. This configuration is required for performing deployment operation on Azure machines. If the target Virtual Machines are backed by a Load balancer, ensure Inbound NAT rules are configured for target port (5986).",
Copy file name to clipboardExpand all lines: Tasks/DeployAzureResourceGroup/task.json
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
"version": {
14
14
"Major": 1,
15
15
"Minor": 0,
16
-
"Patch": 90
16
+
"Patch": 91
17
17
},
18
18
"demands": [
19
19
"azureps"
@@ -138,20 +138,6 @@
138
138
},
139
139
"visibleRule": "action = Create Or Update Resource Group"
140
140
},
141
-
{
142
-
"name": "deploymentMode",
143
-
"type": "pickList",
144
-
"label": "Deployment Mode",
145
-
"defaultValue": "Incremental",
146
-
"required": true,
147
-
"helpMarkDown": "Specify the deployment mode for Azure Resource Manager template.",
148
-
"options": {
149
-
"Validation": "Validation Only",
150
-
"Incremental" : "Incremental Mode",
151
-
"Complete" : "Complete Mode"
152
-
},
153
-
"visibleRule": "action = Create Or Update Resource Group"
154
-
},
155
141
{
156
142
"name": "csmFile",
157
143
"type": "filePath",
@@ -179,6 +165,20 @@
179
165
"helpMarkDown": "Specify the template parameters to override like, <br>–storageName fabrikam –adminUsername $(vmusername) -adminPassword (ConvertTo-SecureString -String '$(password)' -AsPlainText -Force) –azureKeyVaultName $(fabrikamFibre).",
180
166
"visibleRule": "action = Create Or Update Resource Group"
181
167
},
168
+
{
169
+
"name": "deploymentMode",
170
+
"type": "pickList",
171
+
"label": "Deployment Mode",
172
+
"defaultValue": "Incremental",
173
+
"required": true,
174
+
"helpMarkDown": "Incremental mode handles deployments as incremental updates to the resource group . It leaves unchanged resources that exist in the resource group but are not specified in the template. \n\n Complete mode deletes resources that are not in your template. \n\n Validate mode enables you to find problems with the template before creating actual resources. \n\n By default, Incremental mode is used.",
175
+
"options": {
176
+
"Validation": "Validation Only",
177
+
"Incremental" : "Incremental",
178
+
"Complete" : "Complete"
179
+
},
180
+
"visibleRule": "action = Create Or Update Resource Group"
0 commit comments