File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -259,7 +259,7 @@ $parameterFilePath="c:\mytemplates\mytemplate.json"
259
259
$templateFilePath="c:\mytemplates\mytemplateparm.json"
260
260
$secretID="https://test1.vault.azure.net:443/secrets/testcertificate4/55ec7c4dc61a462bbc645ffc9b4b225f"
261
261
262
- New-AzServiceFabricCluster -ResourceGroupName $resourceGroupName -SecretIdentifier $secretId -TemplateFile $templateFilePath -ParameterFile $parameterFilePath
262
+ New-AzServiceFabricCluster -ResourceGroupName $resourceGroupName -SecretIdentifier $secretID -TemplateFile $templateFilePath -ParameterFile $parameterFilePath
263
263
```
264
264
265
265
Deploy the cluster using Azure CLI:
@@ -268,11 +268,11 @@ Deploy the cluster using Azure CLI:
268
268
declare $resourceGroupName = "testRG"
269
269
declare $parameterFilePath="c:\mytemplates\mytemplate.json"
270
270
declare $templateFilePath="c:\mytemplates\mytemplateparm.json"
271
- declare $secertId ="https://test1.vault.azure.net:443/secrets/testcertificate4/55ec7c4dc61a462bbc645ffc9b4b225f"
271
+ declare $secretID ="https://test1.vault.azure.net:443/secrets/testcertificate4/55ec7c4dc61a462bbc645ffc9b4b225f"
272
272
273
273
az sf cluster create --resource-group $resourceGroupName --location $resourceGroupLocation \
274
- --secret-identifier az $secretID \
275
- --template-file $templateFilePath --parameter-file $parametersFilePath
274
+ --secret-identifier $secretID \
275
+ --template-file $templateFilePath --parameter-file $parameterFilePath
276
276
```
277
277
278
278
## Next steps
You can’t perform that action at this time.
0 commit comments