Skip to content

Commit 953afb6

Browse files
authored
Merge pull request #105581 from VikasPullagura-MSFT/patch-53
(Azure CXP) resolves MicrosoftDocs/azure-docs#48795
2 parents 977415a + 52380f3 commit 953afb6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/service-fabric/service-fabric-cluster-creation-via-arm.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ $parameterFilePath="c:\mytemplates\mytemplate.json"
259259
$templateFilePath="c:\mytemplates\mytemplateparm.json"
260260
$secretID="https://test1.vault.azure.net:443/secrets/testcertificate4/55ec7c4dc61a462bbc645ffc9b4b225f"
261261
262-
New-AzServiceFabricCluster -ResourceGroupName $resourceGroupName -SecretIdentifier $secretId -TemplateFile $templateFilePath -ParameterFile $parameterFilePath
262+
New-AzServiceFabricCluster -ResourceGroupName $resourceGroupName -SecretIdentifier $secretID -TemplateFile $templateFilePath -ParameterFile $parameterFilePath
263263
```
264264

265265
Deploy the cluster using Azure CLI:
@@ -268,11 +268,11 @@ Deploy the cluster using Azure CLI:
268268
declare $resourceGroupName = "testRG"
269269
declare $parameterFilePath="c:\mytemplates\mytemplate.json"
270270
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"
272272
273273
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
276276
```
277277

278278
## Next steps

0 commit comments

Comments
 (0)